Agent skill
hive-refactor
Perform a large-scale refactor with staged work and validation; use when changes span many files or modules.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/hive-refactor
SKILL.md
Hive Refactor
Overview
Use mprocs to coordinate a staged refactor across multiple workers.
Inputs
- Refactor goal and scope
Workflow
- Verify
gitandmprocsare available. - Create
.hive/sessions/<session-id>. - Write
tasks.jsonwith staged refactor tasks. - Write queen and worker prompts (analysis, implementation, tests, docs).
- Launch mprocs.
tasks.json Template
{
"session": "{SESSION_ID}",
"created": "{ISO_TIMESTAMP}",
"status": "active",
"thread_type": "Hive",
"task_type": "hive-refactor",
"tasks": [
{"id": "analysis", "owner": "queen", "status": "pending"},
{"id": "impl-1", "owner": "worker-1", "status": "pending"},
{"id": "impl-2", "owner": "worker-2", "status": "pending"},
{"id": "tests", "owner": "worker-3", "status": "pending"}
]
}
mprocs Launch
mprocs --config .hive/mprocs.yaml
Output
- Refactor plan, changes, and validation status
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?