What problem does it solve?
Hive provides a local-first, git-backed system for managing work items in AI swarm workflows. This skill offers best practices for creating, updating, and coordinating cells (bugs, features, tasks, epics) and ensures consistency across agents.
Core Features & Use Cases
- Create and manage cells of types bug, feature, task, chore, epic with open/in_progress/blocked/closed states.
- Epic management with linked subtasks and cross-team coordination.
- Sync changes to a git-backed hive directory and track progress across sessions.
- Swarm coordination guidance: load relevant skills like swarm-coordination and swarm-mail for end-to-end orchestration.
Quick Start
Load the hive-workflow skill and begin by creating an epic and a few tasks; move status as work progresses; finally close them and sync.
- hive_create(type="epic", title="User Auth Overhaul", body="...")
- hive_create(type="task", title="Implement OAuth2", parent="epic-id")
- hive_update(id="hv-abc123", state="in_progress")
- hive_close(id="hv-abc123", resolution="Fixed in commit ...")
- hive_sync()