manage-slash-commands
Expert guidance for creating and managing Claude Code slash commands. Use when working with slash commands, creating custom commands, understanding command structure, or learning YAML configuration. This skill should be used when the user asks to "create a slash command", "add a command", "manage commands", "build a command", or mentions slash commands, custom commands, or command configuration.
What this skill does
<objective> Create effective slash commands for Claude Code that enable users to trigger reusable prompts with `/command-name` syntax. Slash commands expand as prompts in the current conversation, allowing teams to standardize workflows and operations. This skill teaches you to structure commands with XML tags, YAML frontmatter, dynamic context loading, and intelligent argument handling. </objective> <quick_start> <workflow> 1. Create `.claude/commands/` directory (project) or use `~/.claude/commands/` (personal) 2. Create `command-name.md` file 3. Add YAML frontmatter (at minimum: `description`) 4. Write command prompt 5. Test with `/command-name [args]` </workflow> <example> **File**: `.claude/commands/optimize.md` ```markdown --- description: Analyze this code for performance issues and suggest optimizations --- Analyze the performance of this code and suggest three specific optimizations: ``` **Usage**: `/optimize` Claude receives the expanded prompt and analyzes the code in context. </example> </quick_start> <xml_structure> All generated slash commands should use XML tags in the body (after YAML frontmatter) for clarity and consistency. <required_tags> **`<objective>`** - What the command does and why it matters ```markdown <objective> What needs to happen and why this matters. Context about who uses this and what it accomplishes. </objective> ``` **`<process>` or `<steps>`** - How to execute the command ```markdown <process> Sequential steps to accomplish the objective: 1. First step 2. Second step 3. Final step </process> ``` **`<success_criteria>`** - How to know the command succeeded ```markdown <success_criteria> Clear, measurable criteria for successful completion. </success_criteria> ``` </required_tags> <conditional_tags> **`<context>`** - When loading dynamic state or files ```markdown <context> Current state: ! `git status` Relevant files: @ package.json </context> ``` (Note: Remove the space after @ in actual usage) **`<verification>`** - When producing artifacts that need checking ```markdown <verification> Before completing, verify: - Specific test or check to perform - How to confirm it works </verification> ``` **`<testing>`** - When running tests is part of the workflow ```markdown <testing> Run tests: ! `npm test` Check linting: ! `npm run lint` </testing> ``` **`<output>`** - When creating/modifying specific files ```markdown <output> Files created/modified: - `./path/to/file.ext` - Description </output> ``` </conditional_tags> <structure_example> ```markdown --- name: example-command description: Does something useful argument-hint: [input] --- <objective> Process $ARGUMENTS to accomplish [goal]. This helps [who] achieve [outcome]. </objective> <context> Current state: ! `relevant command` Files: @ relevant/files </context> <process> 1. Parse $ARGUMENTS 2. Execute operation 3. Verify results </process> <success_criteria> - Operation completed without errors - Output matches expected format </success_criteria> ``` </structure_example> <intelligence_rules> **Simple commands** (single operation, no artifacts): - Required: `<objective>`, `<process>`, `<success_criteria>` - Example: `/check-todos`, `/first-principles` **Complex commands** (multi-step, produces artifacts): - Required: `<objective>`, `<process>`, `<success_criteria>` - Add: `<context>` (if loading state), `<verification>` (if creating files), `<output>` (what gets created) - Example: `/commit`, `/create-prompt`, `/run-prompt` **Commands with dynamic arguments**: - Use `$ARGUMENTS` in `<objective>` or `<process>` tags - Include `argument-hint` in frontmatter - Make it clear what the arguments are for **Commands that produce files**: - Always include `<output>` tag specifying what gets created - Always include `<verification>` tag with checks to perform **Commands that run tests/builds**: - Include `<testing>` tag with specific commands - Include pass/fail criteria in `<success_criteria>` </intelligence_rules> </xml_structure> <arguments_intelligence> The skill should intelligently determine whether a slash command needs arguments. <commands_that_need_arguments> **User provides specific input:** - `/fix-issue [issue-number]` - Needs issue number - `/review-pr [pr-number]` - Needs PR number - `/optimize [file-path]` - Needs file to optimize - `/commit [type]` - Needs commit type (optional) **Pattern:** Task operates on user-specified data Include `argument-hint: [description]` in frontmatter and reference `$ARGUMENTS` in the body. </commands_that_need_arguments> <commands_without_arguments> **Self-contained procedures:** - `/check-todos` - Operates on known file (TO-DOS.md) - `/first-principles` - Operates on current conversation - `/whats-next` - Analyzes current context **Pattern:** Task operates on implicit context (current conversation, known files, project state) Omit `argument-hint` and don't reference `$ARGUMENTS`. </commands_without_arguments> <incorporating_arguments> **In `<objective>` tag:** ```markdown <objective> Fix issue #$ARGUMENTS following project conventions. This ensures bugs are resolved systematically with proper testing. </objective> ``` **In `<process>` tag:** ```markdown <process> 1. Understand issue #$ARGUMENTS from issue tracker 2. Locate relevant code 3. Implement fix 4. Add tests </process> ``` **In `<context>` tag:** ```markdown <context> Issue details: @ issues/$ARGUMENTS.md Related files: ! `grep -r "TODO.*$ARGUMENTS" src/` </context> ``` (Note: Remove the space after the exclamation mark in actual usage) </incorporating_arguments> <positional_arguments> For structured input, use `$1`, `$2`, `$3`: ```markdown --- argument-hint: <pr-number> <priority> <assignee> --- <objective> Review PR #$1 with priority $2 and assign to $3. </objective> ``` **Usage:** `/review-pr 456 high alice` </positional_arguments> </arguments_intelligence> <file_structure> **Project commands**: `.claude/commands/` - Shared with team via version control - Shows `(project)` in `/help` list **Personal commands**: `~/.claude/commands/` - Available across all your projects - Shows `(user)` in `/help` list **File naming**: `command-name.md` → invoked as `/command-name` </file_structure> <yaml_frontmatter> <field name="description"> **Required** - Describes what the command does ```yaml description: Analyze this code for performance issues and suggest optimizations ``` Shown in the `/help` command list. </field> <field name="allowed-tools"> **Optional** - Restricts which tools Claude can use ```yaml allowed-tools: Bash(git add:*), Bash(git status:*), Bash(git commit:*) ``` **Formats**: - Array: `allowed-tools: [Read, Edit, Write]` - Single tool: `allowed-tools: SequentialThinking` - Bash restrictions: `allowed-tools: Bash(git add:*)` If omitted: All tools available </field> </yaml_frontmatter> <arguments> <all_arguments_string> **Command file**: `.claude/commands/fix-issue.md` ```markdown --- description: Fix issue following coding standards --- Fix issue #$ARGUMENTS following our coding standards ``` **Usage**: `/fix-issue 123 high-priority` **Claude receives**: "Fix issue #123 high-priority following our coding standards" </all_arguments_string> <positional_arguments_syntax> **Command file**: `.claude/commands/review-pr.md` ```markdown --- description: Review PR with priority and assignee --- Review PR #$1 with priority $2 and assign to $3 ``` **Usage**: `/review-pr 456 high alice` **Claude receives**: "Review PR #456 with priority high and assign to alice" See [references/arguments.md](references/arguments.md) for advanced patterns. </positional_arguments_syntax> </arguments> <dynamic_context> Execute bash commands before the prompt using the exclamation mark prefix directly before backticks (no space between). **Note:** Examples below show a space after the exclamation mark to prevent execution during skill loading. In actual slash commands, remove the space. Example: ```markdown --- descri
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.