Agent skill
skill-creator
Create new Claude Code skills following SOTA compact design patterns (v3.2)
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/skill-creator-3x-projetos-claude-memory-framew
SKILL.md
Skill Creator - SOTA Pattern
Workflow
-
Gather requirements: Ask user for skill purpose, trigger conditions, and key workflow steps
-
Design check: Ensure skill is justified (not a simple task, needs reusability)
-
Create structure:
~/.claude/skills/[skill-name]/SKILL.md(compact, <200 words)~/.claude/skills/[skill-name]/EXAMPLES.md(optional, loaded only on demand)~/.claude/skills/[skill-name]/GUIDE.md(optional, loaded only on demand)
-
Generate SKILL.md following SOTA pattern:
- YAML frontmatter: name, description, version
- Clear workflow (numbered steps)
- Try-first approach (don't read configs unnecessarily)
- Lazy loading (load details only when needed)
- Key principle statement
- Optional: "See EXAMPLES.md" or "See GUIDE.md" (but don't auto-load)
-
Create optional docs only if skill is complex:
- EXAMPLES.md: Detailed usage examples
- GUIDE.md: Advanced patterns, troubleshooting, edge cases
-
Update skill registry: Add to
~/.claude/skills/README.mdif exists
SOTA Design Principles
Target: <200 words in SKILL.md Pattern: Try operations first, handle errors gracefully Loading: Lazy load everything (even docs) Config: Don't read unless absolutely necessary Separation: Examples/guides in separate files, loaded only when needed
Key Principle
Skills are for recurring workflows, not one-off tasks. Minimize context by keeping SKILL.md ultra-compact and deferring all details to optional, on-demand files.
Optional docs: EXAMPLES.md, GUIDE.md (load manually when needed)
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?