Créer une compétence Catalyst

VérifiéSûr

Guide pour ajouter une nouvelle compétence à catalyst-skills/, avec structure orchestrée et exemples concrets.

Spar Skills Guide Bot
DocumentationIntermédiaire
9010/08/2026
Claude CodeCursorWindsurfCopilotCodex
#skill-creation#markdown#orchestration#pattern#library

Recommandé pour

Notre avis

Crée un nouveau fichier de compétence Markdown pour la bibliothèque catalyst-skills en suivant un modèle structuré d'analyse, déduplication, vérification et synthèse.

Points forts

  • Impose une structure cohérente de type fan-out/réduction/vérification/synthèse pour toutes les compétences.
  • Maintient la cohérence stylistique en se référant aux fichiers existants.
  • Évite explicitement de modifier d'autres fichiers ou de construire du code framework.

Limites

  • Dépend de la présence des fichiers référencés (ORCHESTRATION-PROMPT.md et compétences existantes).
  • Ne produit qu'un seul fichier Markdown, sans validation de la qualité réelle du contenu.
  • Suppose que l'utilisateur connaît la valeur de $ARGUMENTS.
Quand l'utiliser

Lorsque vous contribuez une nouvelle compétence à la bibliothèque catalyst-skills et devez respecter son format établi.

Quand l'éviter

Lorsque vous implémentez la fonctionnalité d'une compétence ou modifiez des fichiers existants.

Analyse de sécurité

Sûr
Score qualité80/100

The skill only reads existing reference files and creates a single Markdown file. It does not execute shell commands, access the network, or handle sensitive data. No destructive or exfiltrating actions are instructed.

Aucun point d'attention détecté

Exemples

Create a code-review skill
Add a new skill to the catalyst-skills library named 'code-review' following the standard pattern.
Create an api-testing skill
Create a skill file 'api-testing' in catalyst-skills with the usual structure and a worked example.
Create a db-migration skill
Write a new catalyst-skills skill for database migrations, using the same format as the existing skills.

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