Install
$ agentstack add skill-outcomeeng-claude-creating-commands ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
When this skill is invoked, Claude Code provides the base directory. Throughout this skill, we refer to it as ${SKILL_DIR}.
Reference files: ${SKILL_DIR}/references/
IMPORTANT: Do NOT search the project directory for skill files. If you cannot find a file, use Glob: .claude/plugins/cache/**/creating-commands/**/*.md
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.
- Create
.claude/commands/directory (project) or use~/.claude/commands/(personal) - Create
command-name.mdfile - Add YAML frontmatter (at minimum:
description) - Write command prompt
- Test with
/command-name [args]
File: .claude/commands/optimize.md
---
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.
All generated slash commands should use XML tags in the body (after YAML frontmatter) for clarity and consistency.
`` - What the command does and why it matters
What needs to happen and why this matters.
Context about who uses this and what it accomplishes.
` or ` - How to execute the command
Sequential steps to accomplish the objective:
1. First step
2. Second step
3. Final step
`` - How to know the command succeeded
Clear, measurable criteria for successful completion.
`` - When loading dynamic state or files
Current state: ! `git status`
Relevant files: @ package.json
(Note: Remove the space after @ in actual usage)
`` - When producing artifacts that need checking
Before completing, verify:
- Specific test or check to perform
- How to confirm it works
`` - When running tests is part of the workflow
Run tests: ! `npm test`
Check linting: ! `npm run lint`
`` - When creating/modifying specific files
Files created/modified:
- `./path/to/file.ext` - Description
---
name: example-command
description: Does something useful
argument-hint: [input]
---
Process $ARGUMENTS to accomplish [goal].
This helps [who] achieve [outcome].
Current state: ! `relevant command`
Files: @ relevant/files
1. Parse $ARGUMENTS
2. Execute operation
3. Verify results
- Operation completed without errors
- Output matches expected format
Simple commands (single operation, no artifacts):
- Required: `
,,` - Example:
/check-todos,/first-principles
Complex commands (multi-step, produces artifacts):
- Required: `
,,` - Add: `
(if loading state),(if creating files),` (what gets created) - Example:
/commit,/create-prompt,/run-prompt
Commands with dynamic arguments:
- Use
$ARGUMENTSin `or` tags - Include
argument-hintin frontmatter - Make it clear what the arguments are for
Commands that produce files:
- Always include `` tag specifying what gets created
- Always include `` tag with checks to perform
Commands that run tests/builds:
- Include `` tag with specific commands
- Include pass/fail criteria in ``
Determine whether a command needs arguments:
Needs arguments — task operates on user-specified data:
- Use
$ARGUMENTSfor single input:Fix issue #$ARGUMENTS - Use
$1,$2,$3for structured input:Review PR #$1 with priority $2 - Add
argument-hintin frontmatter
No arguments — task operates on implicit context (conversation, known files, project state):
- Omit
argument-hintand don't reference$ARGUMENTS
For detailed examples and patterns, see [${SKILL_DIR}/references/arguments.md](references/arguments.md).
Project commands: .claude/commands/
- Shared with team via version control
- Shows
(project)in/helplist
Personal commands: ~/.claude/commands/
- Available across all your projects
- Shows
(user)in/helplist
File naming: command-name.md → invoked as /command-name
Required - Describes what the command does
description: Analyze this code for performance issues and suggest optimizations
Shown in the /help command list.
Optional - Tells users what arguments the command expects
argument-hint: [issue-number]
argument-hint:
Shown in autocomplete. Omit for self-contained commands that don't take arguments.
Optional - Restricts which tools Claude can use
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
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:
---
description: Create a git commit
allowed-tools: Bash(git add:*), Bash(git status:*), Bash(git commit:*)
---
- Current git status: ! `git status`
- Current git diff: ! `git diff HEAD`
- Current branch: ! `git branch --show-current`
- Recent commits: ! `git log --oneline -10`
Based on the above changes, create a single git commit.
The bash commands execute and their output is included in the expanded prompt.
Use @ prefix to reference specific files:
---
description: Review implementation
---
Review the implementation in @ src/utils/helpers.js
(Note: Remove the space after @ in actual usage)
Claude can access the referenced file's contents.
1. Always use XML structure
# All slash commands should have XML-structured bodies
After frontmatter, use XML tags:
- `` - What and why (always)
- `` - How to do it (always)
- `` - Definition of done (always)
- Additional tags as needed (see xml_structure section)
2. Clear descriptions
# Good
description: Analyze this code for performance issues and suggest optimizations
# Bad
description: Optimize stuff
3. Use dynamic context for state-dependent tasks
Current git status: ! `git status`
Files changed: ! `git diff --name-only`
4. Restrict tools when appropriate
# For git commands - prevent running arbitrary bash
allowed-tools: Bash(git add:*), Bash(git status:*), Bash(git commit:*)
# For analysis - thinking only
allowed-tools: SequentialThinking
5. Use $ARGUMENTS for flexibility
Find and fix issue #$ARGUMENTS
6. Reference relevant files
Review @ package.json for dependencies
Analyze @ src/database/* for schema
(Note: Remove the space after @ in actual usage)
Common command patterns with full examples are in [${SKILL_DIR}/references/patterns.md](references/patterns.md):
- Simple analysis — single operation, no state (e.g., security review)
- Git workflow — state-dependent with `
andallowed-tools` - Parameterized — uses
$ARGUMENTSwithargument-hint - File-specific — combines
@ $ARGUMENTSfile references with analysis
Arguments reference: [${SKILL_DIR}/references/arguments.md](references/arguments.md)
- $ARGUMENTS variable
- Positional arguments ($1, $2, $3)
- Parsing strategies
- Examples from official docs
Patterns reference: [${SKILL_DIR}/references/patterns.md](references/patterns.md)
- Git workflows
- Code analysis
- File operations
- Security reviews
- Examples from official docs
Tool restrictions: [${SKILL_DIR}/references/tool-restrictions.md](references/tool-restrictions.md)
- Bash command patterns
- Security best practices
- When to restrict tools
- Examples from official docs
- Analyze: Determine purpose, whether arguments are needed, complexity level (simple vs. complex), and security profile
- Frontmatter: Add
description(required),argument-hint(if arguments needed),allowed-tools(if tool restrictions needed) - Body: Use XML tags — always `
,,; add,,,as needed (see`) - Arguments: Use
$ARGUMENTSor positional$1/$2in tags (see ``) - Save: Project commands in
.claude/commands/, personal in~/.claude/commands/
A well-structured slash command meets these criteria:
YAML Frontmatter:
descriptionfield is clear and conciseargument-hintpresent if command accepts argumentsallowed-toolsspecified if tool restrictions needed
XML Structure:
- All three required tags present: `
,,` - Conditional tags used appropriately based on complexity
- No raw markdown headings in body
- All XML tags properly closed
Arguments Handling:
$ARGUMENTSused when command operates on user-specified data- Positional arguments (
$1,$2, etc.) used when structured input needed - No
$ARGUMENTSreference for self-contained commands
Functionality:
- Command expands correctly when invoked
- Dynamic context loads properly (bash commands, file references)
- Tool restrictions prevent unauthorized operations
- Command accomplishes intended purpose reliably
Quality:
- Clear, actionable instructions in `` tag
- Measurable completion criteria in ``
- Appropriate level of detail (not over-engineered for simple tasks)
- Examples provided when beneficial
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: outcomeeng
- Source: outcomeeng/claude
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.