spences10/skills

skill-creator

Design and create Agent Skills using progressive disclosure principles. Use when building new skills, planning skill architecture, or writing skill content.

First seen May 7, 2026

Installation

$ npx skills add spences10/skills --skill skill-creator

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from spences10/skills · top by installs.

npx skills add spences10/skills

Browse all from spences10/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 15
Default branch main
Open issues 1
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

More metadata
last_updated
2026-04-24
verified_against
current local skill refresh

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,173 B
  • docs SUMMARY.md 195 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 19 installs

SKILL.md

Skill Creator

Create effective Agent Skills using progressive disclosure. For choosing validation and distribution tooling around skills, use ecosystem-guide.

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:

  1. Metadata (~27 tokens optimal, ~100 max) - YAML frontmatter for triggering
  2. Instructions (<50 lines recommended, 500 max) - SKILL.md body with core patterns
  3. Resources (unlimited) - references/ scripts/ assets/ loaded on demand

Key: Keep Levels 1 & 2 lean. Move details to Level 3. Use npx claude-skills-cli validate to check budgets.

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](references/quick-start.md) - Creating your first skill
  • [writing-guide.md](references/writing-guide.md) - Writing effective skills
  • [development-process.md](references/development-process.md) - Step-by-step workflow
  • [skill-examples.md](references/skill-examples.md) - Patterns and examples
  • [cli-reference.md](references/cli-reference.md) - CLI tool usage
  • [anthropic-resources.md](references/anthropic-resources.md) - Official best practices
  • [mcp-integration.md](references/mcp-integration.md) - MCP server integration patterns
  • [testing-guide.md](references/testing-guide.md) - Testing methodology and checklists
  • [distribution.md](references/distribution.md) - Sharing and distributing skills
  • [troubleshooting.md](references/troubleshooting.md) - Common issues and fixes