From skill-creator
Interactive wizard for creating Claude Code skills with proper structure and frontmatter
How this skill is triggered — by the user, by Claude, or both
Slash command
/skill-creator:create-skillThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Interactive wizard that guides you through creating a properly structured Claude Code skill.
Interactive wizard that guides you through creating a properly structured Claude Code skill.
/skill-creator:create-skill <name>Use the skill-architect agent to help design the skill:
Agent asks:
1. What does this skill do? (Brief description)
2. When should it activate? (Triggering conditions)
3. Should users invoke it directly? (user-invocable)
4. What's the expected workflow? (Process steps)
Based on architect's recommendations, create:
skills/<skill-name>/
└── SKILL.md
---
name: skill-name
description: Brief description from step 1
user-invocable: false # Only if auto-only
---
# Skill Name
Brief overview.
## When to Use
[Triggering conditions from step 2]
## Overview
[Detailed explanation]
## Process
[Step-by-step workflow from step 4]
## Examples
[Concrete usage examples]
skill-validator agent✓ Created skills/analyze-code/SKILL.md
Structure:
- Frontmatter: Valid
- When to Use: Clear triggers
- Content: Complete template
Next steps:
1. Fill in detailed content
2. Test with: /skill-creator:test analyze-code
3. Validate with: /skill-creator:validate-skill-structure analyze-code
npx claudepluginhub tomazwang/agent-toolkit --plugin skill-creatorCreates directory and SKILL.md scaffold with YAML frontmatter for new Claude skills. Invoke via /create-skill [kebab-case-name] when starting skills from scratch.
Generates structured SKILL.md files for new Claude Code skills from purpose descriptions, following templates with frontmatter, usage triggers, steps, and best practices.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.