hive-workflow

0
0
Source

Issue tracking and task management using the hive system. Use when creating, updating, or managing work items. Use when you need to track bugs, features, tasks, or epics. Do NOT use for simple one-off questions or explorations.

Install

mkdir -p .claude/skills/hive-workflow && curl -L -o skill.zip "https://mcp.directory/api/skills/download/6993" && unzip -o skill.zip -d .claude/skills/hive-workflow && rm skill.zip

Installs to .claude/skills/hive-workflow

About this skill

Hive Workflow Skill

Hive is a local-first issue tracking system designed for AI agents. This skill provides best practices for effective cell management.

NOTE: For swarm workflows, combine this skill with swarm-coordination from global-skills/.

Cell Types

TypeWhen to Use
bugSomething is broken and needs fixing
featureNew functionality to add
taskGeneral work item
choreMaintenance, refactoring, dependencies
epicLarge initiative with multiple subtasks

Creating Effective Cells

Good Cell Titles

- "Fix null pointer exception in UserService.getProfile()"
- "Add dark mode toggle to settings page"
- "Migrate auth tokens from localStorage to httpOnly cookies"

Bad Cell Titles

- "Fix bug" (too vague)
- "Make it better" (not actionable)
- "stuff" (meaningless)

Cell Body Structure

## Problem

[Clear description of the issue or need]

## Expected Behavior

[What should happen]

## Current Behavior

[What currently happens, for bugs]

## Proposed Solution

[How to fix/implement, if known]

## Acceptance Criteria

- [ ] Criterion 1
- [ ] Criterion 2

## Notes

[Any additional context, links, or constraints]

Workflow States

open → in_progress → closed
         ↓
      blocked (optional)

State Transitions

Open → In Progress

hive_update(id: "hv-abc123", state: "in_progress")

Use when you start working on a cell.

In Progress → Closed

hive_close(id: "hv-abc123", resolution: "Fixed in commit abc1234")

Use when work is complete.

In Progress → Blocked

hive_update(id: "hv-abc123", state: "blocked", body: "Blocked by #hv-xyz789")

Use when you can't proceed due to a dependency.

Querying Cells

Find Open Work

hive_query(state: "open", type: "bug")

Search by Keywords

hive_query(search: "authentication")

List Recent Activity

hive_query(limit: 10, sort: "updated")

Epic Management

Epics are containers for related work:

---
type: epic
title: User Authentication Overhaul
---

## Objective

Modernize the authentication system

## Subtasks

- [ ] #hv-001: Implement OAuth2 provider
- [ ] #hv-002: Add MFA support
- [ ] #hv-003: Migrate session storage
- [ ] #hv-004: Update login UI

Creating an Epic with Subtasks

  1. Create the epic first:
hive_create(type: "epic", title: "User Auth Overhaul", body: "...")
  1. Create subtasks linked to the epic:
hive_create(type: "task", title: "Implement OAuth2", parent: "epic-id")

Best Practices

1. **One cell per logical unit of work** - Don't combine unrelated fixes
2. **Update state promptly** - Keep cells reflecting reality
3. **Add context in body** - Future you will thank present you
4. **Link related cells** - Use `#hv-id` references
5. **Close with resolution** - Explain how it was resolved
6. **Use labels** - `priority:high`, `area:frontend`, etc.

Sync and Collaboration

Cells sync with git:

  • Changes tracked locally
  • Use hive_sync() to commit and push to remote

Integration with Swarm

When working in a swarm:

1. Load `swarm-coordination` skill with `skills_use(name="swarm-coordination")`
2. Create epic with `hive_create_epic()` (atomic operation)
3. Coordinator assigns cells to worker agents
4. Workers load relevant skills based on subtask type
5. Close cells as subtasks complete
6. Close epic when all subtasks done
7. Sync with `hive_sync()` (MANDATORY at session end)

Skill Recommendations for Common Cell Types

- `type: "bug"` → Load `testing-patterns` for regression tests
- `type: "feature"` → Load `system-design` for architecture
- `type: "chore"` → Load `testing-patterns` if refactoring
- `type: "epic"` → Load `swarm-coordination` for decomposition

You might also like

flutter-development

aj-geddes

Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.

641968

drawio-diagrams-enhanced

jgtolentino

Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.

590705

godot

bfollington

This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.

339397

ui-ux-pro-max

nextlevelbuilder

"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."

318395

nano-banana-pro

garg-aayush

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.

450339

fastapi-templates

wshobson

Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.

304231

Stay ahead of the MCP ecosystem

Get weekly updates on new skills and servers.