plan-to-hc
Create a hive hc epic from the current plan file, inserting the ENTIRE PLAN TEXT into the epic and creating subtasks to track all work items.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a hive hc epic from the current plan file, inserting the ENTIRE PLAN TEXT into the epic and creating subtasks to track all work items.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Best practices for working with Go codebases. Use when writing, debugging, or exploring Go code, including reading dependency sources and documentation.
Autonomous orchestration loop for hive hc tasks. The high-capability manager model reads pending tasks, delegates implementation to cheaper worker sub-agents, critically reviews their output, and commits only code that passes quality checks. Runs to completion without stopping to ask questions.
Post-implementation design re-evaluation. After a feature reaches a working state through iteration, step back and re-examine what actually got built: are the data structures and algorithms the right fit for the access patterns that emerged, can code paths that grew through iteration be consolidated, and what iteration residue (tests for abandoned designs, dead flags/scaffolding, debug logging) should be deleted. Produces a tiered proposal report and applies only approved changes. Use when the user says "rethink this", "step back and re-evaluate", "is this the right design/data structure", "apply CS fundamentals", or wants a design pass on a working feature branch before PR. Not for bug-hunting (/review) or expression-level polish (/simplify) — this questions the design those skills preserve.
Orchestrate parallel claude and codex CLI agents through tmux to deliver a feature end-to-end. The orchestrator delegates planning, work, and review to spawned agents in tmux windows; it does NOT write or edit code itself. User-invoked only.
Open the current branch's diff (or a specific PR) in Plannotator's browser-based code review UI and act on the returned feedback. Use when the user says "review my changes in plannotator", "open the diff for review", "review this PR in plannotator", "let me annotate the diff", or returns to a session to gate code the agent produced.
Single-pass code review of the current branch (or a diff) that routes the changes to relevant concerns, dispatches fresh-context reviewer sub-agents, verifies findings to strip false positives, and reports a ranked, evidence-backed review. Use when the user asks to review local changes, a branch, or a PR before it goes to humans.
| name | plan-to-hc |
| description | Create a hive hc epic from the current plan file, inserting the ENTIRE PLAN TEXT into the epic and creating subtasks to track all work items. |
| allowed-tools | Read,Bash(hive hc:*),Bash(echo:*),Bash(bpcopy:*),Bash(cat:*) |
| disable-model-invocation | true |
Converts a Claude Code plan file into a hive hc epic with subtasks.
When this command is invoked:
Locate the most recent (active) plan file: Read the current plan file from the plans directory
Extract the plan content: Get the ENTIRE TEXT of the plan
Create a hive hc epic with subtasks: Use the bulk JSON stdin format to create the epic and all subtasks in a single command. This avoids shell escaping issues with --desc.
Build a JSON object and pipe it to hive hc create:
cat <<'JSONEOF' | hive hc create
{
"title": "Epic title here",
"type": "epic",
"desc": "Full plan text here (escaped for JSON)",
"children": [
{"title": "Step 1: ...", "type": "task"},
{"title": "Step 2: ...", "type": "task", "desc": "details"}
]
}
JSONEOF
CRITICAL: Do NOT use --desc flag for long text. Always use the JSON stdin format to avoid the description being added as a comment instead.
Copy the epic id: Put the epic id on the clipboard
--desc flag (it gets added as a comment instead of description)\n, quotes as \")