Agent skill
factory
Create a skill with automatic quality validation. Uses Manager Pattern: Task creates → Forked Skill audits → Retry if needed. Arguments: skill_name, description, skills_to_load (optional).
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/factory
SKILL.md
Skill Factory Command
This command orchestrates the Manager Pattern for skill creation:
Workflow
!`echo "Creating skill: $1"`
@.claude/skills/create-skill-files/SKILL.md
@.claude/skills/skill-auditor/SKILL.md
Arguments
| Arg | Required | Description |
|---|---|---|
$1 |
Yes | Skill name (kebab-case) |
$2 |
Yes | Description (What-When-Not format) |
$3 |
No | Skills to load (comma-separated) |
Usage
# Create skill
/factory:skill "image-processor" "Process images..."
# With skills
/factory:skill "data-worker" "Handle data tasks..." "file-utils,data-transform"
What Happens
- Create:
Task(create-skill-files)→ writes draft to.claude/workspace/draft.md - Audit: skill-auditor skill (forked) validates the draft
- Retry: If fail, Task creates again with fix guidance
- Done: Skill created, all gates passed
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?