Notre avis
Exporte un catalogue Markdown de toutes les compétences Claude disponibles dans l'environnement.
Points forts
- Découvre automatiquement les compétences personnelles, de projet et de plugins
- Génère un tableau Markown structuré avec nom, description et emplacement
- Évite de scanner inutilement l'ensemble d'une marketplace en se limitant aux plugins activés
Limites
- Ne lit que le frontmatter YAML (5 premières lignes) des fichiers SKILL.md
- Nécessite une structure de répertoires spécifique à Claude Code
- La découverte des plugins dépend de fichiers de configuration locaux
Quand vous avez besoin d'une vue d'ensemble de toutes les compétences Claude disponibles pour la documentation ou l'audit.
Quand vous voulez exécuter ou modifier une compétence spécifique plutôt que de la lister.
Analyse de sécurité
SûrThe skill only reads local files (SKILL.md, settings.json, marketplace manifests) using allowed tools like Read, Glob, and benign Bash commands (cat, find, ls). It writes a markdown file locally. There is no network access, destructive operations, or exfiltration.
Aucun point d'attention détecté
Exemples
Generate a catalog of all available Claude skills and save it to a markdown file.Export all Claude skills to a file called SKILLS.md in the current directory.List all Claude skills and their descriptions, including those from plugins, in a table.name: skill-export description: Export Claude skills. Use to generate documentation of all available Claude Skills. allowed-tools: TodoWrite, Glob, Read, Bash(echo:), Bash(cat:), Bash(find:), Bash(ls:) license: MIT
Skill Export
Generate a comprehensive markdown catalog of all Claude skills available in the environment.
Workflow
Discover Skills from Three Sources
Personal Skills: ~/.claude/skills/*/SKILL.md
- Scan all subdirectories for SKILL.md files
Project Skills: .claude/skills/*/SKILL.md
- Scan all subdirectories relative to current working directory
Plugin Skills: Requires careful multi-step discovery
- Read
~/.claude/settings.jsonto get enabled plugins (format:plugin-name@marketplace-id) - Parse each plugin ID into plugin name and marketplace ID
- Look up marketplace location in
~/.claude/plugins/known_marketplaces.json - Read
{marketplaceLocation}/.claude-plugin/marketplace.jsonto get the marketplace manifest - Find the specific plugin by name in the manifest's
pluginsarray - Only scan skills listed in that plugin's
skillsarray (do not scan entire marketplace) - For each skill path, read
{marketplaceLocation}/{skillPath}/SKILL.md
Critical: Plugin discovery must be scoped to enabled plugins. Do not scan all skills in a marketplace—only those listed in the specific enabled plugin's manifest entry.
Extract and Format
For each SKILL.md file:
- Parse YAML frontmatter to extract
nameanddescription. - Record location as absolute path to the skill directory (use
dirname()of SKILL.md path)
Critical: Only read the YAML frontmatter, i.e., the top 5 lines, of SKILL.md files.
Generate markdown table:
# Skills
Skills are additional instructions for specific scenarios. Given below is a list of name, description, and location of all available skills.
If a skill is relevant to the task you're performing based on its description, read the SKILL.md file at the location of that skill for additional instructions.
| Name | Description | Location |
|------|-------------|----------|
| skill-name | Description text | /absolute/path/to/skill |
Formatting: escape pipe characters (\|), remove newlines from descriptions, sort by location type then name.
Write Output
Write the output into a SKILLS.md file at the current working directory. Write the generated markdown into the file, and display summary to the user in chat.
Generateur de Documentation API
Documentation
Genere automatiquement de la documentation API OpenAPI/Swagger.
Rédacteur Technique
Documentation
Rédige de la documentation technique claire selon les meilleurs style guides.
Décision de Pivot Stratégique
Documentation
Documente une décision stratégique de pivot ou de persévérance avec preuves, analyse et justification. À utiliser pour évaluer s'il faut changer de cap sur un produit, une fonctionnalité ou une stratégie en fonction des retours du marché.