session_handoff
Save session state including accomplishments, in-progress tasks, and next steps to resume work in the next session.
Instructions
CALL THIS LAST before your session ends — saves state for your next session.
Stores what you did, what's in progress, and what to do next. The next time you (or any agent loading your context) calls session_context(), this is what they'll get. Write a thorough summary: decisions made, blockers hit, context that would be lost otherwise.
Args: summary: What you accomplished this session. Be specific — this is your only record. next_steps: What to do in the next session, in order of priority. in_progress: Task IDs that are currently claimed and not yet completed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| summary | Yes | What you accomplished this session. Be specific — this is your only record. | |
| next_steps | No | What to do in the next session, in order of priority. | |
| in_progress | No | Task IDs that are currently claimed and not yet completed. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |