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
json
{
"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
bash
mprocs --config .hive/mprocs.yaml
Output
- •Refactor plan, changes, and validation status