返回 Skill 列表
extension
分类: 开发与工程无需 API Key

hive-refactor

进行大规模重构,分阶段工作并验证;当更改涉及许多文件或模块时使用。

person作者: jakexiaohubgithub

Hive Refactor

Overview

Use mprocs to coordinate a staged refactor across multiple workers.

Inputs

  • Refactor goal and scope

Workflow

  1. Verify git and mprocs are available.
  2. Create .hive/sessions/<session-id>.
  3. Write tasks.json with staged refactor tasks.
  4. Write queen and worker prompts (analysis, implementation, tests, docs).
  5. 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