Agent skill
script-kit-hive
Hive/beads task management for Script Kit agents. Use when working with the issue tracking system, managing beads, or coordinating agent work. Covers issue lifecycle, progress reporting, and file reservations.
Install this agent skill to your Project
npx add-skill https://github.com/johnlindquist/script-kit-next/tree/main/.claude/skills/script-kit-hive
SKILL.md
Hive / Beads Task Management
Task tracking and coordination for Script Kit agents.
Directory Structure
.hive/:
issues.jsonl- task trackingmemories.jsonl- semantic learnings
Issue Record Format
{"id":"cell--...","title":"...","status":"open","priority":1,"issue_type":"task","created_at":"...","updated_at":"...","parent_id":null,"dependencies":[],"labels":[],"comments":[]}
Enums
issue_type:epic|task|bug|feature|chorestatus:open|in_progress|blocked|closedpriority: 0 critical, 1 high, 2 medium, 3 low
MCP Commands (Don't Use CLI)
- query/next:
hive_query(...),hive_ready() - create:
hive_create(...),hive_create_epic(...) - update:
hive_start({id}),hive_update({id,...}) - finish:
swarm_complete(...)(nothive_close())
Epic/Subtask Example
hive_create_epic({
epic_title: "Add search functionality",
epic_description: "Implement fuzzy search for script list",
subtasks: [
{ title: "Add search input UI", files: ["src/main.rs"], priority: 0 },
{ title: "Implement fuzzy matching", files: ["src/scripts.rs"], priority: 1 },
{ title: "Add keyboard navigation", files: ["src/main.rs"], priority: 1 }
]
});
Mandatory Lifecycle
swarmmail_init() → hive_start() → progress at 25/50/75 → swarm_complete()
Progress Reporting
swarm_progress({
project_key: "/path/to/project",
agent_name: "your-agent-name",
bead_id: "cell--xxxxx",
status: "in_progress",
progress_percent: 50,
message: "Completed X, now working on Y",
files_touched: ["src/main.rs"]
});
File Reservations
swarmmail_reserve({
paths: ["src/main.rs", "src/theme.rs"],
reason: "cell--xxxxx: Implement feature X",
exclusive: true
});
Required Log Fields
When relevant: correlation_id, duration_ms, bead_id, agent_name, files_touched
Anti-Patterns (Don't Do These)
- Skip
swarmmail_init()(work not tracked) - Use
hive_close()(reservation release breaks) → useswarm_complete() - Edit unreserved files → reserve first
- Commit without verification gate
- Skip 25/50/75 progress updates
When Blocked
Notify coordinator + mark bead blocked (include concrete reason).
Scope Change
Request permission; don't silently expand beyond reserved files.
Pre-Commit Checklist
- check / clippy / test pass
- only reserved files modified
- bead status updated
- progress reported
- correlation IDs present (where applicable)
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
Generate Component Documentation
Based on existing docs styles and specific API implementations, and referencing same name stories, generate comprehensive documentation for the new component.
Generate Component Story
Generate a comprehensive story for a new component for as example.
new-component
How to write a new component of GPUI Component.
troubleshooting
Diagnose and fix common Script Kit issues. Use when the user reports bugs, crashes, missing features, or unexpected behavior in Script Kit GPUI.
script-authoring
Create and manage TypeScript scripts for Script Kit. Use when the user wants to write a new script, edit an existing script, or understand Script Kit's SDK and metadata system.
agents
Create mdflow-backed agent files for Script Kit. Use when the user wants to create AI agents, configure agent backends (Claude, Gemini, Codex), or manage agent metadata.
Didn't find tool you were looking for?