Notre avis
Ce skill permet de créer ou de mettre à jour un autre skill à partir de la conversation en cours, en suivant une procédure structurée.
Points forts
- Automatise la création et la mise à jour des skills sans quitter le flux de travail.
- Maintient une cohérence de format et permet d'ajouter des règles spécifiques.
- Supporte les modes création et mise à jour avec détection automatique.
Limites
- Nécessite que le nom du skill soit en kebab-case.
- Ne gère pas la suppression de skills.
- La détection des sections à modifier en mode mise à jour peut être ambiguë.
Utilisez ce skill lorsque vous souhaitez formaliser un nouveau savoir-faire ou modifier un skill existant à partir de la conversation.
Ne l'utilisez pas pour des modifications simples qui pourraient être faites manuellement, ou si le skill à créer nécessite une décision non spécifiée dans le processus.
Analyse de sécurité
SûrThe skill only performs file existence checks, directory creation, and file writes using standard tools. No destructive commands, network calls, or exfiltration risks.
Aucun point d'attention détecté
Exemples
Create a skill called 'code-review' that checks pull requests for common errors and enforces coding standards.Update the 'code-review' skill to also check for missing error handling.Create or update a skill based on the current conversation.
The first word of $ARGUMENTS is the skill name (kebab-case). The rest is an optional note about what to add or change.
Step 1 — Detect mode
Check whether .claude/skills/$0/SKILL.md already exists.
- Exists → update mode: read the current file, then go to Step 3.
- Does not exist → create mode: go to Step 2.
Step 2 — Determine frontmatter (create only)
Decide the correct frontmatter based on what the skill does:
description — one sentence: what the skill does + when Claude should auto-load it. Put the key trigger phrase first (budget is 1,536 chars).
paths — set only if the skill is scoped to specific files. Use glob patterns:
- Design system / theme work →
@soroush.tech/design-system/** - All TypeScript →
**/*.ts,**/*.tsx - Omit for project-wide knowledge
argument-hint — short label shown in autocomplete, e.g. [filename] or [component-name].
disable-model-invocation: true — add only if this is a manual workflow with side effects (deploy, commit, send). Reference knowledge should NOT have this.
user-invocable: false — add only if users should never call it directly (pure background context).
Step 3 — Write content
Rules for skill content:
- Reference skills (conventions, patterns, style guides): state the rule + one ✗/✓ code pair. No prose explaining why — the example shows it.
- Task skills (step-by-step actions): numbered steps, imperative verbs, no explanation.
- Keep SKILL.md under 500 lines.
- Every line is a recurring token cost — cut anything that doesn't change Claude's behavior.
- End with:
If $ARGUMENTS names a file, read it and apply the rules. Otherwise apply to the code being discussed.(for reference skills only).
Update mode: add the new rule or change to the appropriate section. Do not touch unrelated rules. Remove any rule made obsolete by the change.
Step 4 — Write the file
For create: run mkdir -p .claude/skills/$0 then write .claude/skills/$0/SKILL.md.
For update: write the updated .claude/skills/$0/SKILL.md.
Confirm what was created or changed. If a new paths scope was set, mention which files will trigger it.
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.