hivemind_handoff
hivemind_handoff
Manage agent-to-agent handoffs — pass work from one agent to another with full context.
Actions
| Action | Description |
|---|---|
| request | Request a handoff to another agent |
| list | List pending handoff requests |
| accept | Accept a handoff |
| reject | Reject a handoff |
| status | Check handoff status |
Request Example
hivemind_handoff(
action: "request",
to_agent: "cursor-agent",
description: "Auth refactor is done. Need frontend integration.",
context: {
files_changed: ["src/auth.ts", "src/middleware.ts"],
decisions: ["Using JWT with 15min expiry"],
next_steps: ["Update login form", "Add token refresh"]
}
)
Accept Example
hivemind_handoff(action: "accept", handoff_id: "ho_abc123")
List Pending
hivemind_handoff(action: "list", status: "pending")
Handoffs preserve context across agent boundaries. The receiving agent gets the full context of what was done, what was decided, and what needs to happen next.