skill-generator
Skill Generator is a meta-skill that scaffolds new Claude Code skills with your choice of execution model. Select sequential mode for linear pipelines with fixed dependencies, or autonomous mode for dynamic, context-aware routing. It generates a complete skill package including directory structure, phase files, and specification templates.
Skill Generator creates new Claude Code skills with configurable sequential or autonomous execution modes.
AI-generated summary based on this skill's SKILL.md
Install
catlog22/Claude-Code-Workflow/skill-generator · repository language: TypeScript
git clone https://github.com/catlog22/Claude-Code-Workflow
cp -r Claude-Code-Workflow/.claude/skills/skill-generator ~/.claude/skills/skill-generatorFrequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
How do I create a new skill with Skill Generator?
Skill Generator scaffolds new Claude Code skills by generating a complete package with directory structure, phase files, and specification templates. You specify your skill's name and choose between sequential mode (linear pipelines with fixed dependencies) or autonomous mode (dynamic, context-aware routing). The tool then produces all necessary files and configuration to get you started immediately.
What's the difference between sequential and autonomous execution?
Skill Generator offers two execution models. Sequential mode runs phases in a fixed, linear order with predetermined dependencies—ideal for workflows where each step must complete before the next begins. Autonomous mode enables dynamic, context-aware routing where phases adapt based on runtime conditions, allowing more flexible and intelligent workflow orchestration.
Can I generate skill scaffolding with Skill Generator?
Yes. Skill Generator automatically generates complete skill scaffolding including the full directory structure, individual phase files, and specification templates. This meta-skill eliminates manual setup, letting you focus on implementing your skill's core logic rather than building the framework from scratch.
How does Skill Generator help me learn skill design patterns?
Skill Generator produces standards-compliant skill templates that embody Claude Code best practices. By examining the generated scaffolding and phase structure, you learn established design patterns and compliance requirements. The tool serves as both a builder and a teaching resource for skill architecture.
Can I customize and extend skills generated by Skill Generator?
Absolutely. Skill Generator provides template-based scaffolding as a foundation. Once generated, you can extend and customize every aspect—add new phases, modify execution logic, adjust configurations, and integrate domain-specific functionality. The generated structure is designed to be developer-friendly and easy to adapt.
What does Skill Generator include in its generated packages?
Skill Generator produces a complete skill package with directory structure, phase files organized by execution mode, specification templates, and configuration scaffolding. Whether you choose sequential or autonomous mode, you receive all necessary components to build, test, and deploy a new Claude Code skill.
SKILL.md
rendered from the published skill — quoted content, verbatim
Skill Generator
Meta-skill for creating new Claude Code skills with configurable execution modes.
Architecture Overview
``` ┌─────────────────────────────────────────────────────────────────┐ │ Skill Generator │ │ │ │ Input: User Request (skill name, purpose, mode) │ │ ↓ │ │ ┌─────────────────────────────────────────────────────────┐ │ │ │ Phase 0-5: Sequential Pipeline │ │ │ │ ┌────┐ ┌────┐ ┌────┐ ┌────┐ ┌────┐ ┌────┐ │ │ │ │ │ P0 │→│ P1 │→│ P2 │→│ P3 │→│ P4 │→│ P5 │ │ │ │ │ │Spec│ │Req │ │Dir │ │Gen │ │Spec│ │Val │
(truncated - see the full file via the links below)
Read as markdown · JSON record · Browse the source repository
File tree — 15 files
.claude/skills/skill-generator/SKILL.md
.claude/skills/skill-generator/phases/01-requirements-discovery.md
.claude/skills/skill-generator/phases/02-structure-generation.md
.claude/skills/skill-generator/phases/03-phase-generation.md
.claude/skills/skill-generator/phases/04-specs-templates.md
.claude/skills/skill-generator/phases/05-validation.md
.claude/skills/skill-generator/specs/cli-integration.md
.claude/skills/skill-generator/specs/execution-modes.md
.claude/skills/skill-generator/specs/reference-docs-spec.md
.claude/skills/skill-generator/specs/scripting-integration.md
.claude/skills/skill-generator/specs/skill-requirements.md
.claude/skills/skill-generator/templates/autonomous-action.md
.claude/skills/skill-generator/templates/autonomous-orchestrator.md
.claude/skills/skill-generator/templates/code-analysis-action.md
.claude/skills/skill-generator/templates/llm-action.md