Notre avis
Crée automatiquement des compétences (skills) pour Claude Code en utilisant un workflow orchestré en plusieurs phases.
Points forts
- Automatise la création de compétences Claude Code avec des sous-agents spécialisés
- Assure la conformité aux spécifications Agent Skills
- Inclut validation et génération de scénarios d'évaluation
- Produit des compétences prêtes pour la production avec documentation et scripts
Limites
- Nécessite une connexion Internet pour la phase de découverte
- Dépend de la qualité des résultats de recherche web
- Peut ne pas couvrir tous les cas d'usage non documentés
Utilisez cette compétence lorsque vous devez créer rapidement une nouvelle compétence Claude Code structurée et testée.
Évitez de l'utiliser pour des compétences très simples ou ponctuelles qui ne justifient pas un processus aussi élaboré.
Analyse de sécurité
SûrThe skill guides skill generation using read, write, and safe research tools. Bash is used for validation scripts but does not instruct destructive actions. Workflow includes quality and security checks, reducing risk.
Aucun point d'attention détecté
Exemples
Create a skill that generates conventional commit messages based on staged changes, with options for scope and breaking changes.Generate a skill for scraping web pages and extracting structured data into JSON using CSS selectors.Build a new slash command skill that summarizes long articles into bullet points and saves them to a file.name: platxa-skill-generator description: >- Autonomous skill creator for Claude Code CLI. Use when the user asks to "create a skill", "generate a skill", or "build a new slash command". Uses multi-phase orchestrated workflow with Task tool subagents to research domains, design architecture, generate content, validate quality, and iteratively improve via eval infrastructure. Creates production-ready skills following the Agent Skills open standard and Claude Code extensions. allowed-tools:
- Read
- Write
- Edit
- Bash
- Glob
- Grep
- WebFetch
- WebSearch
- Task
- AskUserQuestion
- TodoWrite
metadata:
version: "3.1.0"
author: "DJ Patel — Founder & CEO, Platxa | https://platxa.com"
tags:
- skill-creation
- automation
- builder
- claude-code
Platxa Skill Generator
Create Claude Code skills autonomously using a multi-phase orchestrated workflow.
Overview
This skill guides you through creating production-ready Claude Code skills by:
- Discovering domain knowledge through web research and existing skill analysis
- Architecting the skill structure based on type (Builder/Guide/Automation/Analyzer/Validator)
- Generating SKILL.md content, scripts, and reference documentation
- Validating against Anthropic's Agent Skills spec with quality scoring
The workflow uses Task tool subagents for each phase, ensuring deep expertise at every step.
Workflow
Phase 1: Initialize
User: /skill-generator
Ask the user for:
- Skill description (what should the skill do?)
- Target users (who will use this skill?)
Phase 2: Discovery (Automatic)
Use Task tool with subagent_type="Explore" to:
- Search web for domain best practices
- Fetch relevant documentation
- Analyze existing skills in
~/.claude/skills/for patterns - Identify procedural knowledge (HOW) vs domain expertise (WHAT)
- Determine what varies by project vs what's constant
Sufficiency Check: Evaluate if research is complete. Only ask user for clarification if gaps exist.
Phase 3: Architecture
Based on discovery, determine:
- Skill Type: Builder, Guide, Automation, Analyzer, or Validator
- Structure: Which directories needed (scripts/, references/, assets/)
- Token Budget: SKILL.md < 500 lines, metadata ~100 tokens
Generate architecture blueprint JSON:
{
"skill_type": "Builder",
"directories": ["scripts", "references"],
"skill_md_sections": ["Overview", "Workflow", "Examples", "Output Checklist"],
"scripts": [{"name": "validate.sh", "purpose": "Validate output"}],
"references": [{"name": "best-practices.md", "purpose": "Domain expertise"}]
}
Phase 4: Generation
Create all skill files:
- SKILL.md with valid YAML frontmatter
- scripts/ with executable helpers
- references/ with domain documentation
Use templates from references/templates/ based on skill type.
Phase 5: Validation
Run quality checks:
- [ ] SKILL.md exists with valid frontmatter
- [ ] Name is hyphen-case, ≤64 characters
- [ ] Description is ≤1024 characters
- [ ] Token budget within limits
- [ ] Scripts are executable and secure
- [ ] References provide real domain expertise
- [ ] Quality score ≥7.0/10 (
python3 scripts/score-skill.py <dir> --json)
Quality Score: Run score-skill.py for 5-dimension assessment (spec compliance, content depth, example quality, structure, token efficiency). Must be ≥7.0/10 to pass.
Evaluation Scaffold: After passing validation, generate 3 eval scenarios (happy-path, edge-case, error-handling) in evals/evals.json for testing the skill's real-world behavior.
Phase 6: Installation
Ask user for installation location:
- User skill:
~/.claude/skills/{skill-name}/ - Project skill:
.claude/skills/{skill-name}/
Copy files and verify installation.
Examples
Example 1: Creating a Code Documenter Skill
User: /skill-generator
Assistant: What skill would you like to create?
User: A skill that generates documentation for Python code
Assistant: [Runs Discovery subagent to research Python docstring standards...]
Assistant: [Creates architecture for "Automation" type skill...]
Assistant: [Generates py-documenter skill with SKILL.md, scripts/generate-docs.sh]
Assistant: Quality score: 8.2/10. Install to ~/.claude/skills/py-documenter? (y/n)
Example 2: Creating a Security Analyzer Skill
User: /skill-generator
Assistant: What skill would you like to create?
User: A skill that scans code for security vulnerabilities
Assistant: [Discovers OWASP Top 10, SAST patterns, CVE databases...]
Assistant: [Creates "Analyzer" type skill with references/owasp-checklist.md]
Assistant: Quality score: 7.8/10. Ready to install.
Output Checklist
When generating a skill, verify:
- [ ] SKILL.md has valid YAML frontmatter
- [ ] Name follows hyphen-case (e.g.,
my-skill-name) - [ ] Name is ≤64 characters
- [ ] Description is ≤1024 characters
- [ ]
allowed-toolslists only tools the skill needs - [ ] Workflow section has clear steps
- [ ] Examples show realistic usage
- [ ] References contain actual domain expertise (not placeholders)
- [ ] Scripts are executable and tested
- [ ] Quality score ≥7.0/10
Skill Types Reference
| Type | Purpose | Key Sections | |------|---------|--------------| | Builder | Create new things | Workflow, Templates, Output Checklist | | Guide | Teach/explain | Steps, Examples, Best Practices | | Automation | Automate tasks | Triggers, Scripts, Verification | | Analyzer | Inspect/audit | Checklist, Metrics, Reports | | Validator | Verify quality | Rules, Thresholds, Pass/Fail Criteria |
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.