Notre avis
Synchronise les configurations entre un projet et un template bidirectionnellement en exécutant d'abord le mise à jour du template puis du projet.
Points forts
- Maintient la cohérence entre les projets et les templates
- Évite la perte d'améliorations locales grâce à l'ordre d'exécution
- Automatise les copies de fichiers et les commits
Limites
- Nécessite que les sous-compétences template-updater et project-updater soient définies
- Dépend de l'outil 'but' pour les commits
- Ne gère pas les conflits de fusion automatiquement
À utiliser au début d'une session ou après avoir amélioré des compétences/règles partagées.
Ne pas utiliser si vous travaillez seul·e sans besoin de synchronisation avec un template central.
Analyse de sécurité
PrudenceThe skill orchestrates a bidirectional sync workflow using Bash and other skills that involve file operations and version control. While the tools are powerful, the instructions themselves do not perform destructive actions or exfiltration. The risk is managed by requiring user interaction (AskUserQuestion) and relying on documented skill scripts. Caution is warranted due to the use of Bash, but the skill appears legitimate.
Aucun point d'attention détecté
Exemples
Run sync skill to get latest template updates into my project.I've updated some shared rules in my project, run sync to push them to the template.name: sync description: > Synchronize project and template configurations bidirectionally. Runs template-updater then project-updater in correct order. Use when syncing changes between project .claude/ and ~/.claude/template/. allowed-tools: [Bash, Read, Write, AskUserQuestion]
Sync
Bidirectional sync between project .claude/ and ~/.claude/template/.
Why Order Matters
- template-updater first - Push local improvements to template
- project-updater second - Pull template updates to project
Running in wrong order would overwrite local improvements before they're pushed.
Workflow
- Use the Skill tool to invoke
/template-updater- this loads the skill with the correct script path - Handle any file copies needed
- Use the Skill tool to invoke
/project-updater- this loads the skill with the correct script path - Handle any file copies needed
- Summarize what changed
Do NOT guess script paths. Each skill's SKILL.md documents its own script.
After Sync
If any files were copied, commit the changes:
Project changes:
but status
but commit <branch> --only -m "chore: sync claude config from template"
Template changes:
cd ~/.claude && but status
but commit <branch> --only -m "chore: update template from project"
When to Use
- At session start (get latest template updates)
- After improving shared skills/rules (push to template)
- Periodically to keep project and template aligned
Expert Next.js App Router
Developpement
Un skill qui transforme Claude en expert Next.js App Router.
Générateur de README
Developpement
Crée des README.md professionnels et complets pour vos projets.
Rédacteur de Documentation API
Developpement
Génère de la documentation API complète au format OpenAPI/Swagger.