Notre avis
Convertit les commandes slash de Claude Code au format Skills, en transformant les métadonnées YAML et la structure des répertoires avec des options de conversion basique ou complète.
Points forts
- Automatise la migration des commandes vers les compétences
- Propose deux niveaux de conversion selon les besoins
- Préserve les compétences existantes lors des mises à jour
- Gère le traitement par lots de plusieurs fichiers
Limites
- Ne fonctionne qu'avec les commandes Claude Code
- La conversion complète peut ne pas gérer tous les cas particuliers
- Nécessite une connaissance de base des deux formats
Utilisez cette compétence lorsque vous souhaitez migrer des commandes slash existantes vers le format Skills ou harmoniser votre bibliothèque de compétences.
Ne l'utilisez pas pour créer de nouvelles compétences à partir de zéro ou pour des outils autres que Claude Code.
Analyse de sécurité
PrudenceThe skill itself does not contain destructive or exfiltrating instructions. However, it includes a hook that runs a command (python3 script) on file write, which introduces a minor risk if the script were tampered with. The skill also instructs moving and rewriting files, but legitimate use cases justify this. Overall, caution is warranted due to the hook execution.
- •Uses PostToolUse hook to execute an external Python script, which could be a potential security risk if the script is compromised or maliciously modified.
Exemples
Convert the 'add-phase' command from ./commands/gsd/add-phase.md to a skill using basic conversion.Migrate all commands in ./commands/ to the skills directory with full conversion, transforming content and references.Convert my review.md command to a skill, but check if a skill already exists and only update the content below the frontmatter.name: converting-commands-to-skills description: Use this skill when converting Claude Code slash commands to Skills format. Handles transformation from ./commands/.md to ./skills//SKILL.md, including YAML frontmatter conversion, name transformation to gerund form, description enhancement for invocation triggers, and batch processing. Invoke when user asks to convert commands to skills, migrate slash commands, or transform command files. hooks: PostToolUse: - matcher: Write hooks: - type: command command: python3 ~/.claude/skills/converting-commands-to-skills/scripts/validate-frontmatter.py
Converting Slash Commands to Skills
This skill automates the conversion of Claude Code slash commands (in ./commands/ or ~/.claude/commands/) to the Skills format (in ./skills/ or ~/.claude/skills/).
Conversion Process
1. Choose Conversion Type
CRITICAL: Before starting, use AskUserQuestion to ask the user which conversion type they want:
Basic Conversion:
- Transforms YAML frontmatter (name to gerund form, remove command-specific fields, enhance description)
- Transforms directory structure (./commands → ./skills)
- Does NOT change any content below the YAML frontmatter (keeps @path, !commands, all content as-is)
Full Conversion:
- Everything in basic conversion
- PLUS transforms content below frontmatter (progressive disclosure, @path → ./path, !command → Bash tool instructions, supporting files)
Ask the user: "Do you want a basic conversion (frontmatter + directory only) or full conversion (frontmatter + directory + content transformation)?"
2. Analyze Source Command and Check for Existing Skill
First, read the command file to understand its structure:
# Example command file structure
cat ./commands/gsd/add-phase.md
Command files typically have:
- YAML frontmatter with fields like
description,allowed-tools,argument-hint,model,context,agent - Markdown content with instructions
- Bash execution blocks prefixed with exclamation mark (!)
- File references using @ symbol syntax (@file.md)
Check if target skill already exists:
# Check if skill directory and SKILL.md exist
ls ./skills/skill-name/SKILL.md
If skill already exists:
- Preserve the existing frontmatter (do NOT overwrite it)
- Only update the content below the frontmatter according to conversion type
- Ask user: "This skill already exists. Should I update only the content below the frontmatter while preserving the existing frontmatter?"
2. Transform to Skill Format
Apply these transformations (see ./transformation-rules.md for details):
Name Transformation:
- Command:
add-phase.md→ Skill:adding-phases(gerund form) - Command:
review.md→ Skill:reviewing-code - Pattern: Use verb + -ing form, lowercase, hyphens
Directory Structure:
- Source:
./commands/category/command-name.md - Target:
./skills/category-command-name/SKILL.md - The category/namespace becomes a prefix in the skill directory name
- Examples:
./commands/kata/add-phase.md→./skills/kata-adding-phases/SKILL.md./commands/gsd/new-project.md→./skills/gsd-starting-new-projects/SKILL.md./commands/review.md(no category) →./skills/reviewing-code/SKILL.md
YAML Frontmatter:
- Keep:
name(transformed),description(enhanced) - Remove:
allowed-tools,argument-hint,model,context,agent - Skills inherit all Claude Code capabilities automatically
Description Enhancement:
- Original (task-focused): "Add a new phase to the roadmap"
- Enhanced (invocation-focused): "Use this skill when adding planned phases to the roadmap, appending sequential work to milestones, or creating new phase entries. Triggers include 'add phase', 'append phase', 'new phase', and 'create phase'."
- Include: trigger keywords, use cases, when to invoke
Content Transformation (FULL CONVERSION ONLY):
- Convert bash execution (exclamation mark prefix like !command) to explicit instructions with Bash tool
- Transform file references (@ prefix like @file.md) to relative paths (./file.md)
- Move detailed content to supporting files with intention-revealing names
- Keep SKILL.md under 500 lines using progressive disclosure
- For BASIC conversion: Skip all content transformation - copy content as-is
3. Batch Conversion Workflow
When converting multiple commands:
# 1. List all commands to convert
find ./commands -name "*.md" -type f
# 2. For each command file, perform conversion
# (Claude will iterate through files)
For each file:
- Read the source command file
- Determine target skill name and directory
- Check if target skill already exists
- If skill exists:
- Read existing SKILL.md
- Extract and preserve existing frontmatter
- Only update content below frontmatter
- If skill does not exist:
- Create skill directory structure
- Transform YAML frontmatter according to rules
- If BASIC conversion: Copy content below frontmatter as-is
- If FULL conversion: Transform content according to rules
- Write SKILL.md (preserving frontmatter if skill existed)
- If FULL conversion: Extract supporting content to separate files if needed
- Validate the conversion (hook runs automatically)
4. Validate Conversion
Automatic Validation:
After each skill file is written, a PostToolUse hook automatically runs validate-frontmatter.py to check:
- Name follows gerund form convention (verb + -ing)
- Name is max 64 characters
- Description is present and under 1024 characters
- Description is in third person
- No invalid frontmatter fields (allowed-tools, argument-hint, etc.)
The hook will output validation results. If validation fails, review and fix the issues.
Manual Validation Checklist:
All conversions (basic and full):
- ✓ Name uses gerund form (verb + -ing)
- ✓ Name is max 64 characters
- ✓ Description includes trigger keywords and use cases
- ✓ Description is in third person
- ✓ YAML frontmatter has no invalid fields
- ✓ Directory structure is correct (./skills/)
Full conversion only:
- ✓ Supporting files have intention-revealing names
- ✓ Relative path references use
./prefix - ✓ SKILL.md is concise (under 500 lines preferred)
- ✓ Bash executions converted to explicit instructions
5. Prompt for User Review
After automatic transformation:
- Show the user what was converted
- Highlight the enhanced description
- Ask if description improvements are needed
- Suggest any supporting files that could be extracted
Usage Examples
Single File Conversion: User: "Convert ./commands/gsd/add-phase.md to a skill"
Batch Conversion: User: "Convert all commands in ./commands/gsd/ to skills"
Project Migration: User: "Migrate all my slash commands to the skills format"
Acceptance Criteria
All conversions (basic and full):
- [ ] User asked about conversion type (basic vs full)
- [ ] If skill exists, user asked about updating content only
- [ ] Existing frontmatter preserved if skill already exists
- [ ] Skill directory created in correct location (./skills/)
- [ ] SKILL.md has proper YAML frontmatter
- [ ] Name follows gerund form convention
- [ ] Description is invocation-focused with triggers
- [ ] All slash-command-specific fields removed
- [ ] Automatic validation hook ran successfully
- [ ] User prompted to review description enhancements
Full conversion only:
- [ ] Bash executions converted to explicit instructions
- [ ] File references use relative paths
- [ ] Supporting files have intention-revealing names
- [ ] Content transformed with progressive disclosure
Basic conversion only:
- [ ] Content below frontmatter copied as-is with NO changes
Supporting Files
See ./transformation-rules.md for detailed transformation patterns and ./conversion-examples.md for before/after examples.
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.