← ClaudeAtlas

skill-templatelisted

Generate custom skill/command from template
claude-world/director-mode-lite · ★ 68 · AI & Automation · score 82
Install: claude install-skill claude-world/director-mode-lite
# Skill Template Generator Generate a custom skill (slash command) based on requirements. **Usage**: `/skill-template [skill-name] [purpose]` --- ## Templates | Purpose | Template | Features | |---------|----------|----------| | Workflow | Multi-step | Sequential steps | | Generator | Creator | File creation | | Checker | Validator | Validation rules | | Automation | Runner | Command execution | | Agent-backed | Delegator | Runs as agent | --- ## Process 1. **Gather Requirements** - Skill name (lowercase, hyphenated) - Purpose - Arguments (if any) - Workflow steps - Context isolation (fork)? - Agent backing? - Tool restrictions? 2. **Select Template** based on purpose 3. **Generate File** at `.claude/skills/[name]/SKILL.md` 4. **Validate** with `/skill-check` --- ## Frontmatter Reference ```yaml --- name: skill-name # Required: lowercase, hyphenated description: What it does # Required: shown in / menu version: 0.1.0 # Optional: semantic version user-invocable: true # Optional: appears in / menu (default true) model: sonnet # Optional: inherit, haiku, sonnet, opus, best, sonnet[1m], opus[1m], opusplan allowed-tools: # Optional: restrict available tools (YAML list) - Read - Write - Bash context: fork # Optional: isolated context agent: agent-name # Optional: delegate to agent (requires context: fork) argument-hint: "<hint>" # Option