Notre avis
Crée une compétence réutilisable pour Claude Code en générant un fichier Markdown structuré avec instructions, exemples et ressources optionnelles.
Points forts
- Fournit un modèle clair avec des bonnes pratiques
- Organise la documentation et le code dans des sous-dossiers
- Assure des instructions actionnables et minimales
Limites
- Fonctionne uniquement dans l'environnement Claude Code
- Suppose que l'utilisateur sait ce qu'il veut automatiser
- Peut être trop rigide pour des compétences complexes
Quand vous souhaitez enseigner à Claude Code un nouveau workflow ou une commande réutilisable.
Quand la tâche est ponctuelle ou ne bénéficie pas d'être enregistrée comme compétence.
Analyse de sécurité
SûrThe skill only instructs creating new skill files and reference resources within the .claude/skills directory using file_write; it does not involve shell execution, network access, or any destructive actions.
Aucun point d'attention détecté
Exemples
Create a skill that generates commit messages from the staged git diff.Create a skill that runs ESLint on a file and suggests fixes.Create a skill to summarize the last 5 git commits.name: "Skill Creating" description: "Used to create a new skill. Used when a user wants to create a new skill " version: "1.0.0" dependencies: ["context7", "mcp-api", "python>=3.8"] allowed-tools: ["file_write"]
Create Skill
Instructions
When requested to create a new skill
Create Skill
Instructions
When requested to create a new skill, follow these steps:
- Create a new folder in
.claude/skillswith the skill namexyz.md(make name gerund form) - Take the requested input to turn into a re-usable skill
- Be sure to have the description field be very clear on what it does and how to use it - 2-4 sentences max
- Store documentation and sample inputs/outputs in a new sub-folder there
resources/if they exceed several lines or will be referenced for depth. - Generate minimal, clear, actionable Markdown instructions as the primary workflow guide.
- If code or scripts are needed, place them in the skill folder and reference their purpose in this file.
##Template:
name: my-skill-name description: A clear description of what this skill does and when to use it
My Skill Name
[Add your instructions here that Claude will follow when this skill is active]
Examples
- Example usage 1
- Example usage 2
Guidelines
- Guideline 1
- Guideline 2
Examples
skill.md
name: Generating Commit Messages description: Generates clear commit messages from git diffs. Use when writing commit messages or reviewing staged changes.
Generating Commit Messages
Instructions
- Run
git diff --stagedto see changes - I'll suggest a commit message with:
- Summary under 50 characters
- Detailed description
- Affected components
Best practices
- Use present tense
- Explain what and why, not how
References
- Additional templates and best practices are in the Claude Skill repo and Skill authoring best practices.
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.