handoff
Write a structured session context packet to save tokens and let the next agent continue without re-reading files.
Instructions
Write a structured handoff packet for the next agent session. Call this tool at the end of a session, or before you switch to a different agent. The next agent calls recall to load this packet and continue without re-reading files. This saves 60-85% of tokens compared to re-discovering context.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task | Yes | A one-line description of the task. | |
| files | No | A list of files that matter for this task. Use the format: path:lines - reason. | |
| status | Yes | The current status of the task. | |
| progress | Yes | A summary of what has been done so far. Include the root cause if this is a bug fix. | |
| decisions | No | A list of decisions made during this session. Include what was chosen and why. | |
| next_steps | No | A list of next steps for the next agent. Order by priority. | |
| session_key | No | The session key. The default is hash(cwd). |