Créer une compétence catalyst

VérifiéSûr

Guide pour créer une nouvelle compétence dans catalyst-skills en suivant un modèle d'orchestration spécifique.

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

Recommandé pour

Notre avis

Ce guide facilite la création d'un nouveau fichier de compétence conforme au modèle de la bibliothèque catalyst-skills, avec fan-out, réduction, vérification et synthèse.

Points forts

  • Assure la cohérence avec les compétences existantes grâce à un modèle strict.
  • Décompose le travail en tâches d'analyse parallélisables.
  • Intègre des étapes explicites de déduplication et de vérification critique.
  • Fournit un exemple concret entièrement développé.

Limites

  • Nécessite que les fichiers de référence comme ORCHESTRATION-PROMPT.md soient disponibles.
  • Se concentre uniquement sur un fichier markdown, sans code de framework.
  • Peut être excessif pour des compétences très simples.
Quand l'utiliser

Lorsque vous ajoutez une nouvelle compétence réutilisable à une bibliothèque structurée du type catalyst-skills, en respectant un format prédéfini.

Quand l'éviter

Pour créer un prompt simple autonome ou lorsque la compétence ne doit pas s'intégrer dans une bibliothèque existante avec un modèle imposé.

Analyse de sécurité

Sûr
Score qualité92/100

The skill only instructs to read local files (ORCHESTRATION-PROMPT.md and an existing skill) and create a new markdown file within the catalyst-skills/ directory. No destructive commands, network activity, or exfiltration. It is entirely safe to execute.

Aucun point d'attention détecté

Exemples

Create a refactoring skill
Add a new skill to catalyst-skills/ named 'refactor-legacy' with a worked example about breaking up a monolithic function.
Add a debugging skill
Add a new skill 'debug-first-failure' to the catalyst-skills library following the standard pattern.
Create a database migration skill
Add a new skill to catalyst-skills/ for writing database migrations, including a realistic ticket example and verification questions.

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