Agent skill
skill-creator
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/skill-creator-desmondchoy-ssl-wikichurches
SKILL.md
Skill Creator
Skills are modular packages that extend Claude's capabilities by providing specialized knowledge, workflows, and tools.
Core Principles
Conciseness
The context window is shared. Only add information Claude doesn't already have. Challenge each piece: "Does this justify its token cost?"
Degrees of Freedom
- High freedom (text instructions): Multiple valid approaches, context-dependent decisions
- Medium freedom (pseudocode/scripts with params): Preferred pattern exists, some variation acceptable
- Low freedom (specific scripts): Fragile operations, consistency critical
Skill Anatomy
skill-name/
├── SKILL.md (required)
│ ├── YAML frontmatter: name, description (required)
│ └── Markdown instructions
└── Bundled Resources (optional)
├── scripts/ # Executable code for deterministic tasks
├── references/ # Documentation loaded as needed
└── assets/ # Files used in output (templates, icons)
What NOT to Include
- README.md, CHANGELOG.md, INSTALLATION_GUIDE.md
- User-facing documentation
- Setup/testing procedures
Progressive Disclosure
- Metadata (name + description) - Always in context (~100 words)
- SKILL.md body - When skill triggers (<5k words, <500 lines)
- Bundled resources - As needed by Claude
For design patterns, see:
references/workflows.md- Multi-step processes and conditional logicreferences/output-patterns.md- Template and example patterns
Creation Process
Step 1: Understand with Examples
Gather concrete examples of how the skill will be used. Ask:
- What functionality should it support?
- What would trigger this skill?
Step 2: Plan Reusable Contents
For each example, identify:
- Scripts for repetitive code
- References for domain knowledge
- Assets for templates/boilerplate
Step 3: Initialize
python scripts/init_skill.py <skill-name> --path <output-directory>
Step 4: Edit
- Implement resources (scripts, references, assets)
- Write SKILL.md with proper frontmatter
- Delete unused example files
Frontmatter guidelines:
descriptionis the primary triggering mechanism- Include both what skill does AND when to use it
- All "when to use" info goes in description, not body
Step 5: Package
python scripts/package_skill.py <path/to/skill-folder> [output-dir]
Validates and creates a distributable .skill file.
Step 6: Iterate
Use the skill on real tasks, notice struggles, update, and test again.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?