Skip to content

ggruschka/skillbuilder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Skill Builder

An interactive Claude skill that guides you through creating new Claude skills — from use-case definition to a validated, ready-to-install skill folder.

What It Does

Skill Builder is itself a Claude skill. When activated, it runs a structured two-phase process:

  1. Interview — Walks you through 5 stages of questions to define your skill's purpose, triggers, dependencies, workflow, and error handling.
  2. Build — Generates the complete skill folder (SKILL.md, references, scripts, assets) and validates it against a comprehensive checklist.

The result is a skill folder you can install in Claude.ai, Claude Code, or use via the API — no manual file wiring required.

Installation

Claude Code (CLI / IDE)

Copy the skill-builder folder into your skills directory:

cp -r skill-builder ~/.claude/skills/

Claude.ai

  1. Zip the skill-builder folder
  2. Go to Settings > Capabilities > Skills
  3. Upload the zip file

API

Use the /v1/skills endpoint with the container.skills parameter (requires Code Execution Tool beta).

Usage

Once installed, trigger the skill with natural language:

"Build a skill"
"Create a new skill"
"Help me write a skill"
"Make a skill for [your use case]"

Skill Builder will start the interview process and guide you through every step.

Skill Categories

Skill Builder supports three categories of skills:

Category Use Case Example
Document/Asset Creation Consistent output generation (docs, code, designs) API documentation generator
Workflow Automation Multi-step processes with validation gates Project scaffolder
MCP Enhancement Workflow guidance on top of MCP server connections Linear project manager

Project Structure

skill-builder/
  SKILL.md                  # The skill definition (frontmatter + instructions)
  references/
    best-practices-guide.md           # Condensed guide for building Claude skills
    validation-checklist.md           # Every validation check run after generation
    The-Complete-Guide-to-Building-Skill-for-Claude.pdf  # Original Anthropic guide

How It Works

Interview Phase (5 stages)

  1. Purpose & Category — What the skill does, use cases, MCP requirements
  2. Triggers & Naming — Activation phrases, kebab-case name, negative triggers
  3. Tools & Dependencies — Scripts, references, assets, tool restrictions, target environment
  4. Domain Knowledge & Workflow — Embedded expertise, step-by-step workflow, success criteria
  5. Error Handling & Polish — Failure modes, metadata, license, final review

After each stage, Skill Builder summarizes your answers and asks for confirmation before continuing.

Build Phase (6 steps)

  1. Output location — Where to create the skill folder
  2. Folder structure — Creates only the directories your skill needs
  3. SKILL.md generation — Frontmatter + body following the [What] + [When] + [Capabilities] formula
  4. Supplementary files — Scripts, references, and assets identified in the interview
  5. Validation — Runs through the full checklist (structural, frontmatter, content, trigger quality)
  6. Next steps — Test queries, iteration advice, distribution options

Validation

Every generated skill is checked against 50+ validation criteria covering:

  • Structural — Folder naming, required files, no forbidden files
  • Frontmatter — Field presence, format, security (no XML injection, no reserved names)
  • Content — Instruction quality, error handling, examples, size limits (<5,000 words)
  • Trigger quality — Natural language coverage, negative triggers, scope clarity

References

The references/ directory contains the knowledge base that Skill Builder consults during generation:

  • best-practices-guide.md — Complete reference covering skill structure rules, YAML frontmatter, description writing, instruction patterns, five workflow archetypes, testing guidance, and distribution
  • validation-checklist.md — The full pre-build and post-build validation checklist
  • The-Complete-Guide-to-Building-Skill-for-Claude.pdf — The original Anthropic guide on building skills for Claude

License

MIT

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors