Agent skill
create-skill-files
Worker skill that creates skill files from parameters. Use ONLY within Task() invoked by skill-manager. Not for direct invocation.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/create-skill-files
SKILL.md
Create Skill Files
This skill creates a skill directory and SKILL.md file from parameters.
Input Expected
skill_name: {name}
description: {description}
skills_to_load: (optional) {skill-1, skill-2}
fix_guidance: (optional) {what to fix from previous attempt}
What to Create
Directory Structure
.claude/skills/{skill_name}/
└── SKILL.md
SKILL.md Template
---
name: {skill_name}
description: "{description}"
context: fork # If this skill orchestrates others
agent: general-purpose
skills: # If context: fork
- {skills_to_load}
---
# {skill_name}
## Quick Start
{1-2 sentences on when to use}
## Navigation
| If you need... | Read this section... |
| :------------- | :------------------- |
| Topic A | ## PATTERN: A |
| Topic B | ## PATTERN: B |
## PATTERN: Main Content
{content}
---
<critical_constraint>
{non-negotiable rules}
</critical_constraint>
If fix_guidance Provided
Address the specific issues mentioned:
- Read the guidance
- Fix ONLY the issues
- Keep other parts as-is
If First Attempt (no fix_guidance)
Create a complete skill with:
- Frontmatter (name + description)
- Quick Start section
- Navigation table
- Main content sections
- critical_constraint footer
Output
Return the created file paths and a summary of what was created.
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?