Our review
Quickly adds notes to personal documentation (tips, todos, monitoring, changelog) by appending to markdown files.
Strengths
- Very simple to use
- Organized by note type
- Automatic Git commit suggestion
Limitations
- Requires a local script (~/cc-config/scripts/note.sh)
- No built-in collaboration
- Plain text files only
When you want to quickly capture a tip, task, or event in a personal knowledge base.
When you need shared or structured documentation, or if you prefer not to use a Git-based system.
Security analysis
SafeThe skill invokes a fixed local script with user-provided message argument, which is double-quoted to prevent injection. It only writes to documentation files and proposes a git commit/push. No destructive or exfiltration risks.
No concerns found
Examples
/note tip "Use --resume to resume a conversation"/note todo "Test new pre-edit hook"/note changelog "Added /veille command"name: note description: Ajout rapide de notes dans la documentation personnelle (tips, todo, veille, changelog) disable-model-invocation: true argument-hint: "<tip|todo|veille|changelog> "message"" allowed-tools: Bash
Ajout rapide de notes
Ajoute rapidement une note dans la documentation personnelle.
Types de notes
Ajouter un tip (truc à retenir)
~/cc-config/scripts/note.sh tip "$ARGUMENTS"
→ Ajoute dans docs/tips.md
Ajouter une tâche au backlog
~/cc-config/scripts/note.sh todo "$ARGUMENTS"
→ Ajoute dans docs/backlog.md
Ajouter une note de veille
~/cc-config/scripts/note.sh veille "$ARGUMENTS"
→ Ajoute dans docs/veille.md
Ajouter une entrée changelog
~/cc-config/scripts/note.sh changelog "$ARGUMENTS"
→ Ajoute dans docs/changelog.md
Exemples d'utilisation
/note tip "Utiliser --resume pour reprendre une conversation"/note todo "Tester le nouveau hook pre-edit"/note veille "v1.5 : support des images dans les prompts"/note changelog "Ajout de la commande /veille"
Après ajout
Propose de commiter le changement :
cd ~/cc-config && git add -A && git commit -m "docs: <type> - <message>" && git push
API Documentation Generator
Documentation
Automatically generates OpenAPI/Swagger API documentation.
Technical Writer
Documentation
Writes clear technical documentation following top style guides.
Pivot Decision Framework
Documentation
Documents a strategic pivot or persevere decision with evidence, analysis, and rationale. Use when evaluating whether to change direction on a product, feature, or strategy based on market feedback.