Notre avis
Ce skill permet de créer un nouveau skill Claude Code en générant un fichier SKILL.md structuré dans le répertoire .claude/skills/.
Points forts
- Guide l'utilisateur à travers un processus clair et reproductible
- Inclut des exemples concrets et des bonnes pratiques
- Automatise la création de la structure de répertoires et du contenu
Limites
- Nécessite une compréhension préalable du concept de skills Claude Code
- Se limite à la création d'un seul skill à la fois
- Ne gère pas les dépendances entre skills
Utilisez ce skill chaque fois que vous devez définir un nouveau workflow réutilisable pour Claude Code dans votre projet.
Ne l'utilisez pas si vous devez modifier un skill existant ou si vous travaillez avec un autre agent que Claude Code.
Analyse de sécurité
SûrThe skill only creates a directory and a markdown file in the project's .claude/skills/ directory, with no external network access, no destructive commands, and no exfiltration risk.
Aucun point d'attention détecté
Exemples
Create a skill called 'commit-message' that helps write conventional commit messages with proper formatting.Define a skill named 'feature-workflow' for guiding the full feature branch lifecycle from planning to deployment.Create a skill that filters verbose output from bash commands to reduce context usage.🎯 Define Skill
Create a new Claude Code skill to automate workflows and guide development patterns.
Arguments: <skill-name> [description]
📚 What Are Skills?
Skills are auto-activated workflows stored in .claude/skills/ that:
- Guide Claude through repetitive development patterns
- Reduce context usage with optimized commands
- Ensure consistency across sessions
- Activate automatically based on user intent
🏗️ Skill Structure
Each skill is a directory with a SKILL.md file:
.claude/skills/
└── my-skill-name/
└── SKILL.md
📝 SKILL.md Format
---
name: Human Readable Name
description: When to activate this skill. Activate when [trigger conditions].
allowed-tools: Bash, Read, Write, Edit, Glob, Grep
---
# Skill Name
## When to Use
Activate whenever the user asks to:
- [Trigger condition 1]
- [Trigger condition 2]
- [Trigger condition 3]
## Instructions
[Step-by-step workflow with specific commands and best practices]
### Step 1: [Action]
[Details and code examples]
### Step 2: [Action]
[Details and code examples]
## Best Practices
- [Practice 1]
- [Practice 2]
## Integration with Other Skills
This skill works together with:
- **Other Skill Name**: [How they interact]
✨ Skill Creation Workflow
When user provides skill details, follow this process:
-
Parse Arguments
- Extract skill name (kebab-case)
- Extract description or ask for clarification
-
Create Directory
mkdir -p .claude/skills/[skill-name] -
Generate SKILL.md
- Add YAML frontmatter with name, description, allowed-tools
- Define "When to Use" triggers
- Write step-by-step instructions
- Include code examples
- Add best practices
- Note integration with other skills
-
Confirm Creation
- Show skill name and location
- Display activation triggers
- Explain when Claude will use it
🎨 Skill Examples
Simple Skill (Quiet Command)
- Purpose: Filter verbose output to reduce context
- Pattern: Wrap command with grep filter
- Tools: Bash only
Complex Skill (Feature Development)
- Purpose: Guide full feature branch workflow
- Pattern: Plan → Branch → Build → Deploy → Iterate
- Tools: Multiple (Bash, Read, Write, Edit)
💡 Best Practices for Skills
- Clear Activation Triggers: Be specific about when skill activates
- Step-by-Step Instructions: Number steps, provide exact commands
- Code Examples: Show concrete command syntax
- Context Efficiency: Use grep patterns, quiet flags, filtered output
- Integration Notes: Explain how skill works with others
- Tool Restrictions: Only list tools the skill actually needs
🔧 Scope
- Project Skills:
.claude/skills/(this project only) - Global Skills: Not supported (skills are project-specific)
📖 Additional Resources
- Existing skills in
.claude/skills/for reference patterns - Skills activate automatically based on description triggers
- No need to manually invoke skills - Claude recognizes intent
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.