| name | skill-name |
| description | Brief description of when to use this skill |
| argument-hint | ["optional-arguments"] |
| disable-model-invocation | false |
| user-invocable | true |
| allowed-tools | [] |
Skill Name
Brief overview of what this skill does and when to use it.
Instructions
When this skill is invoked, follow these steps:
-
First step: Describe what Claude should do first
- Use $ARGUMENTS to access all arguments passed to the skill
- Use $ARGUMENTS[0] or $0 for the first argument
- Use ${CLAUDE_SESSION_ID} for logging/session-specific work
- Use ${CLAUDE_SKILL_DIR} for paths relative to this skill directory
-
Second step: Next action to take
- Be specific about what to do
- Include verification steps
- Reference patterns from the codebase
-
Final step: Complete the task
- Ensure quality checks pass
- Provide feedback to the user
Examples
Provide usage examples:
/skill-name argument1
/skill-name arg1 arg2 arg3
Additional Resources
Reference supporting files so Claude knows when to load them:
Notes
- Add important caveats or gotchas
- Mention prerequisites or dependencies
- Link to related skills if applicable