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.From its SKILL.md
npx -y skills add aAAaqwq/AGI-Super-Team --skill skill-creatorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.3 KB, 355 tokens by cl100k_base, as published. Nobody here has run it
Skill 创建指南
当使用此技能
- 创建新的 skill
- 更新现有 skill
- 设计 skill 结构
- 编写 skill 文档
Skill 结构
skill-name/
├── SKILL.md # 必需:技能描述
├── SKILL_SPEC.md # 可选:详细规范
├── examples/ # 可选:示例文件
└── scripts/ # 可选:辅助脚本
SKILL.md 格式
---
name: skill-name
description: 简短描述
license: MIT
metadata:
version: 1.0.0
domains: [category]
type: [tool|specialist|automation]
---
# 技能名称
## 当使用此技能
- 场景 1
- 场景 2
## 能力
1. 功能 1
2. 功能 2
## 触发词
- "关键词 1"
- "关键词 2"
最佳实践
- 简洁: 每个技能专注一个领域
- 实用: 解决实际问题
- 可测试: 提供明确触发词
- 文档: 清晰的使用说明
触发词
- "创建 skill"
- "写个技能"
- "skill 模板"
What ships with it: 6 files
30.9 KB alongside SKILL.md, 3 of them executable
references/
- output-patterns.md1.8 KB
- workflows.md818 B
scripts/
- init_skill.pyruns10.6 KB
- package_skill.pyruns3.2 KB
- quick_validate.pyruns3.4 KB
- LICENSE.txt11.1 KB
Gives 0 of the 12 instructions most skill authoring skills give in 355 tokens
Counted across 408 of the 422 authors here whose files we hold, read 2026-09-06
- Keep SKILL.md under 500 linesin 118 of 408, across 104 files
- Write skill instructions in imperative formin 44 of 408, across 37 files
- Move detailed reference material into references filesin 41 of 408, across 34 files
- Run init_skill.py to initialize new skillsin 40 of 408, across 33 files
- Draft assertions while test runs are in progressin 32 of 408, across 25 files
- Keep description under 1024 charactersin 31 of 408, across 18 files
- Run package_skill.py once the skill is completein 29 of 408, across 23 files
- Spawn with-skill and baseline runs in the same turnin 28 of 408, across 21 files
- Test added scripts by actually running themin 27 of 408, across 21 files
- Follow the creation steps in orderin 24 of 408, across 17 files
- Generate the eval viewer before evaluating outputs yourselfin 24 of 408, across 17 files
- Write the description in third personin 24 of 408, across 18 files
Said here and by no other author read
- Solve real practical problems
- Provide clear trigger words
- Include version, domains, type in metadata
- List the skill's capabilities
- List trigger keywords
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.