skill-creator
11
总安装量
9
周安装量
#28371
全站排名
安装命令
npx skills add https://github.com/aleister1102/skills --skill skill-creator
Agent 安装分布
trae
9
opencode
9
cursor
9
kiro-cli
9
github-copilot
9
Skill 文档
Skill Creator
Goal
Create or refine a skill that is easy to trigger, easy to use, and lean in context.
Guardrails
- Frontmatter must include only
nameanddescription. - Description starts with “Use when” and includes trigger conditions.
- Keep SKILL.md under ~500 lines; move details into
references/. - Do not add extra docs like README/CHANGELOG inside a skill.
- Prefer small, composable changes over broad refactors.
Workflow
- Clarify usage.
- Collect 2â4 concrete example prompts that should trigger the skill.
- Decide reusable resources.
- Identify any scripts, references, or assets that will be reused.
- Initialize (new skills only).
- Run
scripts/init_skill.pywith a hyphenated name.
- Run
- Implement resources.
- Add scripts/references/assets first; test scripts.
- Write or refine
SKILL.md.- Keep instructions imperative, procedural, and concise.
- Link all reference files directly from
SKILL.md.
- Validate.
- Run
scripts/quick_validate.py <path>.
- Run
- Iterate after real use.
- Update SKILL.md or references based on observed friction.
Naming Rules
- Lowercase, digits, and hyphens only.
- Under 64 characters.
- Prefer verb-led names (e.g.,
gh-address-comments). - Folder name must match
name.
Reference Pointers
skill-creator/references/fundamentals.md: skill anatomy, degrees of freedom, progressive disclosure patterns.skill-creator/references/openai_yaml.md:agents/openai.yamlschema and generation.skill-creator/references/workflows.md: multi-step workflow patterns.skill-creator/references/output-patterns.md: output format templates.