skill-creator
2
总安装量
2
周安装量
#72443
全站排名
安装命令
npx skills add https://github.com/cantagestudio/cosmicatlaspacker --skill skill-creator
Agent 安装分布
amp
2
gemini-cli
2
github-copilot
2
codex
2
kimi-cli
2
cursor
2
Skill 文档
Skill Creator
This skill provides guidance for creating effective skills.
About Skills
Skills are modular, self-contained packages that extend Claude’s capabilities by providing specialized knowledge, workflows, and tools.
What Skills Provide
- Specialized workflows – Multi-step procedures for specific domains
- Tool integrations – Instructions for working with specific file formats or APIs
- Domain expertise – Company-specific knowledge, schemas, business logic
- Bundled resources – Scripts, references, and assets for complex tasks
Skill Structure
skill-name/
âââ SKILL.md (required)
â âââ YAML frontmatter metadata (required)
â â âââ name: (required)
â â âââ description: (required)
â âââ Markdown instructions (required)
âââ Bundled Resources (optional)
âââ scripts/ - Executable code
âââ references/ - Documentation
âââ assets/ - Files used in output
Core Principles
Concise is Key
Only add context Claude doesn’t already have. Challenge each piece of information: “Does Claude really need this explanation?”
Set Appropriate Degrees of Freedom
- High freedom: Use when multiple approaches are valid
- Medium freedom: Use when a preferred pattern exists
- Low freedom: Use when operations are fragile and error-prone
Skill Creation Process
- Understand the skill with concrete examples
- Plan reusable skill contents (scripts, references, assets)
- Initialize the skill (run init_skill.py)
- Edit the skill (implement resources and write SKILL.md)
- Package the skill (run package_skill.py)
- Iterate based on real usage