Skill creator
Design and create Agent Skills using progressive disclosure principles. Use when building new skills, planning skill architecture, or writing skill content.From its SKILL.md
npx -y skills add DrOlu/agent-skills --skill skill-creatorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 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.
SKILL.md
1.6 KB, 325 tokens by cl100k_base, as published. Nobody here has run it
Skill Creator
Create effective Agent Skills using progressive disclosure.
When to Create a Skill
Create a skill when you notice:
- Repeating context across conversations
- Domain expertise needed repeatedly
- Project-specific knowledge the agent should know automatically
Progressive Disclosure
Skills load in 3 levels:
- Metadata (~27 tokens) - YAML frontmatter for triggering
- Instructions (<680 tokens) - SKILL.md body with core patterns
- Resources (unlimited) - references/ scripts/ assets/ loaded on demand
Key: Keep Levels 1 & 2 lean. Move details to Level 3.
Structure
my-skill/
├── SKILL.md # Core instructions + metadata
├── references/ # Detailed docs (loaded as needed)
├── scripts/ # Executable operations
└── assets/ # Templates, images, files
References
- quick-start.md - Creating your first skill
- writing-guide.md - Writing effective skills
- development-process.md - Step-by-step workflow
- skill-examples.md - Patterns and examples
- cli-reference.md - CLI tool usage
- agent-skills-resources.md - Architecture and best practices
What ships with it: 12 files
85.1 KB alongside SKILL.md, 3 of them executable
references/
- agent-skills-resources.md11.7 KB
- cli-reference.md14.0 KB
- development-process.md5.2 KB
- output-patterns.md1.8 KB
- quick-start.md2.1 KB
- skill-examples.md9.2 KB
- workflows.md818 B
- writing-guide.md11.9 KB
scripts/
- init_skill.pyruns10.6 KB
- package_skill.pyruns3.2 KB
- quick_validate.pyruns3.4 KB
- LICENSE.txt11.1 KB