Claude-skill-registry create-hive-issue
Create a GitHub issue with extra review and triage detail; use when a thorough or multi-perspective issue write-up is needed.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/create-hive-issue" ~/.claude/skills/majiayu000-claude-skill-registry-create-hive-issue && rm -rf "$T"
manifest:
skills/data/create-hive-issue/SKILL.mdsource content
Create Hive Issue
Overview
Use mprocs to coordinate multiple workers for a deep issue write-up.
Inputs
- Issue description
Workflow
- Verify
andgit
.mprocs - Create
and.hive/sessions/<session-id>
.tasks.json - Write queen and worker prompts (scout, analysis, draft).
- Launch mprocs and synthesize a final issue.
tasks.json Template
{ "session": "{SESSION_ID}", "created": "{ISO_TIMESTAMP}", "status": "active", "thread_type": "Hive", "task_type": "create-hive-issue", "issue": {"description": "{ISSUE_DESC}"}, "tasks": [ {"id": "scout", "owner": "worker-1", "status": "pending"}, {"id": "analysis", "owner": "worker-2", "status": "pending"}, {"id": "draft", "owner": "worker-3", "status": "pending"} ] }
Worker Prompt Outline
# Worker - Issue Scout - Locate relevant files - Summarize evidence # Worker - Issue Analysis - Identify scope and risks # Worker - Issue Draft - Write title and body
mprocs Launch
mprocs --config .hive/mprocs.yaml
Output
- Detailed GitHub issue with triage notes