Prompts
Hive includes 4 MCP prompts — structured protocols that any MCP client can invoke to follow multi-step workflows.
retrospective
Section titled “retrospective”End-of-session review that extracts lessons and appends them to the vault.
Parameters: project (string)
Protocol:
- Review work completed in the current session
- Identify patterns, mistakes, and insights
- Format as structured lessons
- Use
vault_writeto append to the project’s90-lessons.md
Usage: Ask your assistant to “run a retrospective for my-project” at the end of a work session.
delegate
Section titled “delegate”Structured protocol for delegating tasks to cheaper models via hive-worker.
Parameters: task (string)
Protocol:
- Assess task complexity against a suitability matrix
- Choose appropriate model tier
- Construct context-rich prompt
- Call
delegate_taskwith the prepared prompt - Validate the response before using it
Usage: Ask your assistant to “delegate this task: explain this regex”
vault_sync
Section titled “vault_sync”Post-sprint vault synchronization — reconcile documentation with shipped code.
Parameters: project (string)
Protocol:
- Load current project context and tasks
- Compare with recent git history
- Identify stale docs, completed tasks, missing documentation
- Update vault files to match current state
Usage: Ask your assistant to “sync the vault for my-project after this sprint”
benchmark
Section titled “benchmark”Estimate token savings from hive MCP tools in the current session.
Parameters: none
Protocol:
- Call
vault_health(include_usage=True)to get tool call statistics - Estimate tokens that would have been consumed by static loading
- Calculate savings percentage
- Report results
Usage: Ask your assistant to “benchmark the token savings from hive”