Template
Template and examples for creating Claude Code skills. Includes comprehensive guides, 5 working examples, and best practices following the Agent Skills standard.
npx -y skills add sidtheone/claude-skill-template --skill templateAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Brief description of when to use this skill
SKILL.md
3.0 KB, as published. Nobody here has run it
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:
# Example 1: Basic usage
/skill-name argument1
# Example 2: Multiple arguments
/skill-name arg1 arg2 arg3
Additional Resources
Reference supporting files so Claude knows when to load them:
- For complete reference documentation, see reference.md
- For detailed examples, see examples.md
- For technical specifications, see specs/
Notes
- Add important caveats or gotchas
- Mention prerequisites or dependencies
- Link to related skills if applicable