slash-command-factory
Generate custom Claude Code slash commands via guided question flow. TRIGGERS - create slash command, generate command, custom command.
What this skill does
# Slash Command Factory A comprehensive system for generating production-ready Claude Code slash commands through a simple question-based workflow. > **Self-Evolving Skill**: This skill improves through use. If instructions are wrong, parameters drifted, or a workaround was needed — fix this file immediately, don't defer. Only update for real, reproducible issues. ## When to Use This Skill - Creating new custom slash commands for Claude Code - Generating command templates from presets - Validating slash command YAML frontmatter syntax - Organizing commands into proper folder structures - Converting workflows into reusable slash commands --- ## Overview This skill helps you create custom slash commands for Claude Code by: - Asking 5-7 straightforward questions about your command needs - Generating complete command .md files with proper YAML frontmatter - Providing 10 powerful preset commands for common use cases - Validating command format and syntax - Creating well-organized folder structures - Offering installation guidance **Output**: Complete slash commands ready to use in Claude Code --- ## Command Structure Patterns Three official patterns from Anthropic documentation: | Pattern | Name | Best For | Structure | | ------- | ----------- | ------------------------------------------------- | ----------------------------- | | A | Simple | Straightforward tasks (code review, file updates) | Context -> Task | | B | Multi-Phase | Complex discovery (audits, system mapping) | Discovery -> Analysis -> Task | | C | Agent-Style | Specialized roles (experts, orchestrators) | Role -> Process -> Guidelines | Full templates and when-to-use guidance: [Command Patterns](./references/command-patterns.md) --- ## Naming Convention All slash command files MUST follow kebab-case: `[verb]-[noun].md` **Rules**: Lowercase only, 2-4 words, `[a-z0-9-]` characters, no underscores/camelCase | Input | Output | | ---------------------------- | ------------------- | | "Review pull requests" | `pr-review.md` | | "Generate API documentation" | `api-document.md` | | "Audit security compliance" | `security-audit.md` | Full conversion algorithm and examples: [Naming Convention](./references/naming-convention.md) --- ## Bash Permission Rules **Critical**: Blanket `Bash` permission is prohibited. Must use subcommand-level specificity. ```yaml # WRONG - too broad allowed-tools: Bash(git:*) # CORRECT - subcommand-level allowed-tools: Bash(git add:*), Bash(git commit:*), Bash(git push:*) # OK - simple commands without subcommand hierarchies allowed-tools: Bash(cp:*), Bash(mkdir -p:*), Bash(date:*) ``` | Command Type | Bash Permissions | Example Commands | | --------------- | ------------------------------------------- | ------------------------------- | | Git Commands | `git status, git diff, git log, git branch` | code-review, commit-assist | | Discovery | `find, tree, ls, du` | codebase-analyze, structure-map | | Analysis | `grep, wc, head, tail, cat` | search-code, count-lines | | Data Processing | `awk, sed, sort, uniq` | parse-data, format-output | Full patterns and selection guide: [Bash Permissions](./references/bash-permissions.md) --- ## Two Paths to Generate Commands ### Path 1: Quick-Start Presets (30 seconds) Choose from 10 powerful preset commands: | # | Command | Purpose | | --- | ------------------ | ------------------------------------------------------ | | 1 | /research-business | Comprehensive market research and competitive analysis | | 2 | /research-content | Multi-platform content trend analysis and SEO strategy | | 3 | /medical-translate | Medical terminology to 8th-10th grade (German/English) | | 4 | /compliance-audit | HIPAA/GDPR/DSGVO compliance validation | | 5 | /api-build | Complete API integration code with tests | | 6 | /test-auto | Auto-generate comprehensive test suites | | 7 | /docs-generate | Automated documentation creation | | 8 | /knowledge-mine | Extract and structure insights from documents | | 9 | /workflow-analyze | Analyze and optimize business processes | | 10 | /batch-agents | Launch and coordinate multiple agents | Full YAML configs and details: [Preset Commands](./references/preset-commands.md) ### Path 2: Custom Command (5-7 Questions) Create a completely custom command by answering questions about: 1. **Purpose** - What should the command do? 2. **Arguments** - Auto-determined; all flags get mandatory short forms (`-b|--branch`) 3. **Tools** - Which Claude Code tools (Read, Write, Bash, Grep, Task, etc.) 4. **Agents** - Does it need to launch specialized agents? 5. **Output** - Analysis, files, action, or report? 6. **Model** - Default, Sonnet, Haiku, or Opus? (optional) 7. **Features** - Bash execution, file references, context gathering? (optional) Full question scripts and argument conventions: [Question Flow](./references/question-flow.md) --- ## Generation & Installation After collecting answers, the skill: 1. Generates YAML frontmatter with proper `allowed-tools` 2. Generates command body with purpose-specific instructions 3. Creates folder structure under `generated-commands/[command-name]/` 4. Validates format (YAML, arguments, tools, organization) 5. Provides installation instructions ```bash # Install to project cp generated-commands/[command-name]/[command-name].md .claude/commands/ # Install globally cp generated-commands/[command-name]/[command-name].md ~/.claude/commands/ ``` **Plugin invocation**: `/plugin-name:command-name [arguments]` Full process, folder structure, and plugin invocation rules: [Generation Process](./references/generation-process.md) --- ## Validation Every generated command is validated for: - Valid YAML frontmatter (proper syntax, required fields) - Correct argument format (`$ARGUMENTS`, not `$1 $2 $3`) - Short forms for all flags (mandatory 1-2 letter shortcuts) - Bash subcommand-level specificity (no blanket `Bash`) - Clean folder organization **If validation fails**, you get specific fix instructions. Full validation checklist, best practices, and troubleshooting: [Validation Reference](./references/validation-reference.md) --- ## Quick Reference ### Usage ``` @slash-command-factory Use the /research-business preset @slash-command-factory Create a custom command for analyzing customer feedback ``` ### Key Rules | Rule | Detail | | ---------------- | ----------------------------------------- | | Arguments | Always `$ARGUMENTS` (never `$1`, `$2`) | | Flag short forms | Mandatory for all flags (`-b\|--branch`) | | Bash permissions | Subcommand-level only (`Bash(git add:*)`) | | File naming | kebab-case, 2-4 words | | Output location | `./generated-commands/[command-name]/` | ### Ecosystem Integration Works with: factory-guide, skills-guide, prompts-guide, agents-guide More examples and integration details: [Usage Examples](./references/usage-examples.md) ## Post-Execution Reflection After this skill completes, check before closing: 1. **Did the command succeed?** — If not, fix the instruction or error table that caused the failure. 2. **Did parameters or output change?** — If the underlying tool's interface drifted, update Usage examples and Parameters table to match. 3. **Was a workaround needed?** — If you had to improvise (different flags, extra steps), update this SKILL.md so the next invocation doesn't need the same workaround. Only
Related in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.