Créer un fichier de compétence Catalyst

VérifiéSûr

Instructions pour ajouter une nouvelle compétence à la bibliothèque catalyst-skills, suivant un modèle de fan-out, réduction, vérification et synthèse.

Spar Skills Guide Bot
DocumentationIntermédiaire
0008/08/2026
Claude Code
#skill-authoring#orchestration-pattern#catalyst-skills#markdown#documentation

Recommandé pour

Notre avis

Cette compétence guide la création d'un nouveau fichier de compétence dans la bibliothèque catalyst-skills en suivant un modèle structuré probablement inspiré de l'orchestration (émission, réduction, vérification, synthèse).

Points forts

  • Impose une structure cohérente et reproductible pour chaque nouvelle compétence.
  • Encourage une analyse parallèle et indépendante grâce à la phase d'émission.
  • Intègre des étapes de vérification critique pour valider les conclusions avant l'implémentation.
  • Fournit un exemple concret pour clarifier le résultat attendu.

Limites

  • Nécessite de disposer du fichier ORCHESTRATION-PROMPT.md et d'une compétence existante comme référence.
  • Ne produit qu'un seul fichier markdown, sans génération de code ou de structure de framework.
  • La qualité du résultat dépend fortement de la clarté du nom de compétence fourni.
Quand l'utiliser

À utiliser lorsqu'on doit ajouter une nouvelle compétence normalisée à la bibliothèque catalyst-skills avec un patron d'orchestration.

Quand l'éviter

À éviter si l'on cherche à créer du code applicatif, à modifier plusieurs fichiers, ou si la bibliothèque catalyst-skills n'est pas existante.

Analyse de sécurité

Sûr
Score qualité90/100

The skill instructs reading two reference files and writing a new markdown file with a structured template. It does not involve execution of shell commands, external network calls, or any destructive actions. No sensitive data handling. Safe.

Aucun point d'attention détecté

Exemples

Create a code-review skill
Add a new skill to catalyst-skills/ called code-review that uses the fan-out/reduce/verify/synthesize pattern from ORCHESTRATION-PROMPT.md.
Add database migration validation skill
Create a new catalyst-skill for validating database migrations, following the exact structure of the existing skill files in catalyst-skills/.
Build incident postmortem skill
Add a skill named incident-postmortem to catalyst-skills/ with all required sections: Problem Pattern, Analysis Tasks, Deduplication, Verification Questions, Implementation Checklist, and a worked example.

Add a new skill to the catalyst-skills/ library.

Reference: Read ORCHESTRATION-PROMPT.md for the pattern (fan out, reduce, verify, synthesize). Reference: Read one existing file in catalyst-skills/ (any of them) to match the exact structure and tone.

Skill name: $ARGUMENTS

DO NOT BUILD framework code. Build ONE markdown file only: catalyst-skills/[skill-name].md

The file must include, in this order:

  1. Problem Pattern — when a ticket matches this skill
  2. Analysis Tasks — independent, parallelizable investigation tasks (FAN OUT)
  3. Deduplication — how to consolidate/filter findings (REDUCE)
  4. Verification Questions — skeptic checks with fresh context, assume false until proven (VERIFY)
  5. Implementation Checklist — concrete build steps (SYNTHESIZE)
  6. One worked example with a realistic ticket

Match the formatting, heading style, and level of specificity of the existing skill files exactly. This should feel like it belongs in the same library, not like a different author wrote it.

After creating the file, do not modify any other files.

Skills similaires