hive-workflow
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.
What this skill does
# 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
| Type | When to Use |
| --------- | --------------------------------------- |
| `bug` | Something is broken and needs fixing |
| `feature` | New functionality to add |
| `task` | General work item |
| `chore` | Maintenance, refactoring, dependencies |
| `epic` | Large initiative with multiple subtasks |
## Creating Effective Cells
### Good Cell Titles
```text
- "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
```text
- "Fix bug" (too vague)
- "Make it better" (not actionable)
- "stuff" (meaningless)
```
### Cell Body Structure
```markdown
## 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
```text
open → in_progress → closed
↓
blocked (optional)
```
### State Transitions
### Open → In Progress
```typescript
hive_update(id: "hv-abc123", state: "in_progress")
```
Use when you start working on a cell.
### In Progress → Closed
```typescript
hive_close(id: "hv-abc123", resolution: "Fixed in commit abc1234")
```
Use when work is complete.
### In Progress → Blocked
```typescript
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
```typescript
hive_query(state: "open", type: "bug")
```
### Search by Keywords
```typescript
hive_query(search: "authentication")
```
### List Recent Activity
```typescript
hive_query(limit: 10, sort: "updated")
```
## Epic Management
Epics are containers for related work:
```markdown
---
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:
```typescript
hive_create(type: "epic", title: "User Auth Overhaul", body: "...")
```
2. Create subtasks linked to the epic:
```typescript
hive_create(type: "task", title: "Implement OAuth2", parent: "epic-id")
```
## Best Practices
```text
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:
```text
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
```text
- `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
```
Related in Productivity
gitea-workflow
IncludedOrchestrate agile development workflows for Gitea repositories using the tea CLI. Use when working with Gitea-hosted repos and asking to 'run the workflow', 'continue working', 'what's next', 'complete the task cycle', 'start my day', 'end the sprint', 'implement the next task', or wanting guided step-by-step development assistance. Keywords: workflow, orchestrate, agile, task cycle, sprint, daily, implement, review, PR, standup, retrospective, gitea, tea.
microsoft-graph-gateway
IncludedRoute Microsoft Graph work in this workspace. Use when users want to read or write Outlook mail, calendar events, contacts, OneDrive or SharePoint files, Teams, Planner, To Do, users, groups, directory data, or arbitrary Microsoft Graph endpoints from VS Code. Prefer WorkIQ for common read scenarios. Use Microsoft Graph for write actions and gap-read scenarios that need exact Graph properties, filters, permissions, or endpoints.
copilotkit
IncludedUse when building with CopilotKit — setup, development, integrations, debugging, upgrading, or contributing. Routes to the appropriate specialized skill based on the task.
wordly-wisdom
IncludedProvides calibrated decision analysis using Charlie Munger-style multiple mental models, inversion, incentive mapping, circle-of-competence checks, misjudgment audits, second-order effects, and forecast updates. Use when the user asks for an oracle take, a hard call, a decision memo, a premortem, an outside view, a red-team, a sanity-check, what am I missing, think this through, or wants a strategy, hire, investment, plan, product, partnership, or major life choice analysed. Avoid for simple factual lookups or time-sensitive legal, medical, or market questions without fresh evidence.
swain-session
IncludedSession management and project status dashboard. Owns the full session lifecycle (start/work/close/resume), focus lane, bookmarks, worktree detection, and tab naming. Also serves as the project status dashboard — shows active epics, progress, actionable next steps, blocked items, tasks, GitHub issues, and recommendations. Worktree creation is deferred to swain-do task dispatch (SPEC-195). Triggers on: 'session', 'status', 'what's next', 'dashboard', 'overview', 'where are we', 'what should I work on', 'show me priorities', 'bookmark', 'focus on', 'session info'.
gandi
IncludedComprehensive Gandi domain registrar integration for domain and DNS management. Register and manage domains, create/update/delete DNS records (A, AAAA, CNAME, MX, TXT, SRV, and more), configure email forwarding and aliases, check SSL certificate status, create DNS snapshots for safe rollback, bulk update zone files, and monitor domain expiration. Supports multi-domain management, zone file import/export, and automated DNS backups. Includes both read-only and destructive operations with safety controls.