Notre avis
Lit des documents et les divise en fragments exploitables pour le traitement, l'analyse ou le transfert.
Points forts
- Plusieurs stratégies de découpage (lignes, taille, sections, paragraphes)
- Prise en charge du chevauchement pour maintenir le contexte entre les fragments
- Sortie claire avec en-têtes et résumés
- Utilisation simple avec des options intuitives
Limites
- Ne fonctionne que sur des fichiers texte lisibles
- Le découpage par taille est approximatif et se fait au niveau des lignes
- Dépend de la structure des sauts de ligne ou des en-têtes
Lorsque vous avez besoin de fragmenter un document volumineux en parties plus petites pour un traitement ou une analyse séquentielle.
Pour des fichiers binaires ou lorsque la précision octet par octet est requise.
Analyse de sécurité
SûrThe skill only reads files and uses 'wc -l' for counting lines, with no network access, file modification, or command execution beyond the allowed tools. It presents no risk of data exfiltration, unauthorized access, or destructive actions.
Aucun point d'attention détecté
Exemples
/split README.md/split document.md --sections/split document.txt --lines 100 --overlap 10name: split description: Read documents and split them into chunks allowed-tools:
- Read
- Bash(wc *)
Split Skill
Read documents and split them into manageable chunks for processing, analysis, or transfer. Like a master breaking boards, this skill shatters overwhelming information into fragments that can be easily mastered.
Capabilities
- Split by Lines: Split files into chunks of a precise number of lines.
- Split by Size: Split files into chunks of an approximate character count.
- Split by Sections: Split at structural boundaries like markdown headers.
- Split by Paragraphs: Split at blank line delimiters.
- Support Overlap: Maintain context between chunks with an overlapping buffer.
Usage Examples
Split a file into standard chunks:
/split README.md
Split by precise line count:
/split document.txt --lines 100
Split by markdown sections:
/split document.md --sections
Split by paragraphs:
/split article.txt --paragraphs
Split with context overlap:
/split document.txt --lines 100 --overlap 10
Options
| Option | Description | Default |
| -------------- | ------------------------------------ | ------- |
| --lines N | Split every N lines | 100 |
| --size N | Split at approximately N characters | - |
| --sections | Split at markdown headers (# ## ###) | - |
| --paragraphs | Split at blank lines | - |
| --overlap N | Include N lines of context | 0 |
Output Format
Present each chunk with a header showing its number and line range:
══════════════════════════════════════════════════════
CHUNK 1 of 5 (lines 1-100)
══════════════════════════════════════════════════════
[chunk content here]
══════════════════════════════════════════════════════
CHUNK 2 of 5 (lines 101-200)
══════════════════════════════════════════════════════
[chunk content here]
Splitting Strategies
By Lines (default)
Split at fixed line intervals. Best for uniform content like logs or data files.
By Size
Split at approximate character counts, breaking at line boundaries. Best when targeting specific output sizes.
By Sections
Split at markdown headers (lines starting with #). Best for documentation. Each section becomes its own chunk.
By Paragraphs
Split at blank lines. Best for prose where paragraphs are the logical units.
Workflow
- Read the file using the Read tool.
- Get file stats using
wc -lto show total lines. - Apply splitting strategy based on options.
- Display chunks with headers and summaries.
- Show summary with total chunks and average chunk size.
Ingénierie de Prompts
Data & IA
Bonnes pratiques et templates de prompt engineering pour maximiser les résultats IA.
Visualisation de Données
Data & IA
Génère des visualisations de données et graphiques adaptés à vos données.
Architecture RAG
Data & IA
Guide de configuration d'architectures RAG (Retrieval-Augmented Generation).