.claude/skills/skill-creator/SKILL.md
Create new skills with guided prompts following best practices
npx skillsauth add DavidROliverBA/ArchitectKB .claude/skills/skill-creatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Create a new skill for the vault with guided prompts, following clawdbot's meta-skill pattern.
/skill-creator <skill-name>
/skill-creator transcribe
/skill-creator vendor-comparison
.claude/skills/Ask the user these questions in sequence:
Question: "What does this skill do? (One sentence)"
description: field in frontmatterQuestion: "Which model tier is appropriate?"
| Option | When to Use | | ------------------- | -------------------------------------------------------------- | | haiku (default) | Fast, simple tasks - note creation, searches, quick transforms | | sonnet | Complex analysis, code review, multi-step reasoning | | opus | Deep research, complex planning, extended reasoning |
Store in model: frontmatter field.
Question: "How should this skill execute?"
| Option | When to Use | | ------------------ | ------------------------------------------ | | fork (default) | Independent execution, can run in parallel | | orchestrate | Coordinates multiple dependent sub-agents | | (no context) | Single-session, simple execution |
Store in context: frontmatter field.
Question: "Should this skill use a specific agent type?"
| Option | When to Use | | ------------------- | ------------------------------ | | (omit - default) | Use default agent behaviour | | Explore | Read-only codebase exploration | | Plan | Design implementation plans | | general-purpose | Full capabilities needed |
Store in agent: frontmatter field (optional).
Question: "What inputs does this skill need?"
Gather:
<title>, <project>, <path>)[--format png], [for <project>])Question: "What does this skill produce?"
Options:
Question: "Give 2-3 example commands"
Examples help users understand the skill quickly.
Create the skill file at .claude/skills/{{skill-name}}.md:
---
context: { { context } }
model: { { model } }
agent: { { agent or omit if not specified } }
description: { { description } }
allowed-tools: # v2.1.0+ YAML-style tool restrictions (optional)
- Read
- Glob
- Grep
---
# /{{skill-name}}
{{description}}
## Usage
\`\`\`
/{{skill-name}} {{parameters}}
\`\`\`
## Examples
\`\`\`
{{example 1}}
{{example 2}}
{{example 3}}
\`\`\`
## Instructions
### 1. Parse Input
Parse the command for:
{{list of parameters and their validation}}
### 2. Validate Prerequisites
{{any prerequisites or checks}}
### 3. Execute Skill
{{main skill logic - break into numbered steps}}
### 4. Output Results
{{how to present results to user}}
## Error Handling
- {{common error scenarios and recovery}}
## Related Skills
- {{links to related skills}}
Before finalising, verify:
After creation:
Created skill: .claude/skills/{{skill-name}}.md
Skill Summary:
- Name: /{{skill-name}}
- Description: {{description}}
- Model: {{model}}
- Context: {{context}}
Next steps:
1. Review the skill content
2. Add to CLAUDE.md skill table
3. Test with: /{{skill-name}} {{example}}
Would you like to test this skill now?
tools
--- context: fork --- # /youtube Save a YouTube video as both a Weblink (quick reference) and a detailed Page (full analysis). ## Usage ``` /youtube <url> /youtube <url> <optional title override> ``` ## Examples ``` /youtube https://www.youtube.com/watch?v=0TpON5T-Sw4 /youtube https://youtu.be/abc123 AWS re:Invent Keynote ``` ## Prerequisites This skill uses the MCP Docker YouTube tools: - `mcp__MCP_DOCKER__get_video_info` - Video metadata - `mcp__MCP_DOCKER__get_transcript` - Full trans
data-ai
Create and manage git worktrees for parallel agent sessions
testing
--- context: fork --- # /wipe Generate a context handoff summary, clear the session, and resume in a fresh conversation. Detects environment and provides automated (tmux) or manual workflow. ## Usage ``` /wipe /wipe quick # Minimal handoff, just essentials /wipe detailed # Comprehensive handoff with full context ``` ## Instructions When the user invokes `/wipe`: ### Phase 1: Detect Environment First, check the terminal environment: ```bash echo "Environment Detection:"
data-ai
--- context: fork --- # /weekly-summary Generate comprehensive weekly summary from daily notes, meetings, tasks, and project updates using parallel sub-agents. ## Usage ``` /weekly-summary /weekly-summary --last-week /weekly-summary --from 2026-01-01 --to 2026-01-07 /weekly-summary --output page # Create Page note instead of just outputting ``` ## Instructions This skill uses **5 parallel sub-agents** to gather data concurrently from different vault areas, then synthesizes a comprehensi