agent_handoff
Write, read, or resolve handoff notes between agents to pass context across tasks. Notes persist locally until resolved, enabling coordination without shared memory.
Instructions
Write, read, or resolve handoff notes between agents.
Notes persist locally (JSON) until resolved.
Args:
action: write (leave a note), read (fetch open notes addressed to to),
or resolve (close a note by id).
to: Recipient — an agent or context name (e.g. "frontend-agent").
message: Note body (required for write).
from_agent: Name of the agent leaving the note (default "default").
note_id: Note id (required for resolve).
Returns: JSON result.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | ||
| action | Yes | ||
| message | No | ||
| note_id | No | ||
| from_agent | No | default |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |