Notre avis
Documente automatiquement les sessions de travail terminées en enregistrant un résumé structuré et en mettant à jour les bases de connaissances des compétences.
Points forts
- Assure la capture des connaissances après chaque tâche significative
- Améliore les compétences au fil du temps en intégrant les retours d'expérience
- Crée un historique consultable des sessions de travail
- Réduit la documentation manuelle grâce à l'automatisation
Limites
- Ne s'applique qu'aux tâches terminées, pas aux questions-réponses rapides
- Peut générer des résumés verbeux pour des travaux simples
- Dépend de l'accès aux logs de conversation, qui peuvent être compacts
Utilisez cette compétence après avoir terminé un plan, une fonctionnalité ou toute tâche importante pour capturer les leçons apprises.
Évitez pour des questions rapides, des corrections mineures ou des discussions sans résultat concret.
Analyse de sécurité
PrudenceThe skill uses shell commands (ls, cat, jq) to access conversation logs within ~/.claude/projects/. These operations are scoped to well-known directories and serve a legitimate documentation purpose. No destructive or exfiltration commands are present, but the use of bash to parse files could expose sensitive conversation content if the skill is misapplied or logs are improperly handled.
Aucun point d'attention détecté
Exemples
All todos are marked complete. Run recap to document the session and update skills./recapname: recap description: > Document the current conversation and update knowledge base files. USE THIS SKILL AUTOMATICALLY when a plan is executed to completion, all todos are marked complete, or meaningful work is finished. Can also be invoked manually with /recap command.
Conversation Recap
Summarize the session and improve skills based on feedback from the session.
When to Use
Auto-invoke this skill when:
- A plan has been executed to completion (all planned steps done)
- All todos in the todo list are marked complete
- A significant implementation, analysis, or research task is finished
Skip if the conversation was just Q&A, quick fixes, or no lasting learnings.
Process
Step 0: Handle Compacted Conversations
If the conversation has been compacted (you see a summary at the start mentioning "continued from a previous conversation"), fetch the full conversation logs.
Log location: ~/.claude/projects/ (find the directory matching this workspace path)
# List project directories to find the right one
ls -d ~/.claude/projects/*/
# List recent conversation logs by size (larger = more content)
ls -laS ~/.claude/projects/<project-dir>/*.jsonl | head -10
# Extract user prompts from a conversation log
cat ~/.claude/projects/<project-dir>/<conversation-id>.jsonl | jq -c 'select(.type == "user") | .message.content[0].text' 2>/dev/null | grep -v "^null$" | head -30
Log entry types: user (prompts), assistant (responses), summary (compaction), progress (tools), system
Step 1: Analyze the Conversation
Review the conversation (and logs if compacted) to identify:
- Initial prompt: The user's original request
- Plan: The approved approach/plan
- Execution: What was done, step by step
- Result: Final outcome, deliverables, findings
- Errors/failures: Problems encountered and how they were solved
- Usage patterns: New skill usage patterns discovered
- Company context: New insights about the business
Step 2: Create Session Summary
Save to: workflows/yyyy-mm-dd-hh-mm-ss-workflow-title.md
Use the template from references/templates.md.
Filename guidelines:
- Format:
yyyy-mm-dd-hh-mm-ss-descriptive-title.md - Use lowercase with hyphens
- Be descriptive but concise
- Examples:
2026-01-25-14-30-00-email-revenue-analysis.md
Step 3: Improve Skills
Review the session for learnings that should be integrated into skills:
| Finding Type | Action | Location |
|--------------|--------|----------|
| Error/failure with solution | Add fix to skill's script or SKILL.md | .claude/skills/<skill>/ |
| New usage pattern | Document in references | .claude/skills/<skill>/references/ |
| New company context | Add to relevant department file | .claude/skills/company/references/ |
Department files: overview, team, goals, products, marketing, finance, operations, customer-service
Important: Ensure all skill revisions comply with skill-creator guidelines:
- SKILL.md must stay under 500 lines
- Split content into reference files when approaching this limit
- Reference files from SKILL.md with clear descriptions of when to read them
Step 4: Summarize Changes
After documenting and updating, provide the user with:
- Path to the session summary file
- List of skill files that were updated
- Brief summary of what was captured
Guidelines
What to Include in Session Summary
- Title with date: Descriptive title with date underneath
- Initial prompt: Exact user request (quoted)
- Plan: The approved approach
- Execution summary: Step-by-step what was done
- Result: Findings, deliverables, conclusions
- Appendix: List of all skill revisions made
What to Add to Skills
For errors/failures:
- Add solution to SKILL.md troubleshooting section, or
- Fix the script directly in
scripts/
For usage patterns:
- Add to
references/workflow-examples.mdwith example prompts and steps
For company context:
- Add to the relevant department file in
.claude/skills/company/references/
Don't
- Create documentation for trivial conversations
- Duplicate information across multiple files
- Add verbose explanations - keep it concise
- Exceed 500 lines in any SKILL.md file
- Create files in
.claude/plans/(plans are temporary)
Generateur de Documentation API
Documentation
Genere automatiquement de la documentation API OpenAPI/Swagger.
Rédacteur Technique
Documentation
Rédige de la documentation technique claire selon les meilleurs style guides.
Décision de Pivot Stratégique
Documentation
Documente une décision stratégique de pivot ou de persévérance avec preuves, analyse et justification. À utiliser pour évaluer s'il faut changer de cap sur un produit, une fonctionnalité ou une stratégie en fonction des retours du marché.