session_handoff
Save session state by recording accomplishments, next steps, and unfinished task IDs, allowing future agents to resume work without losing context.
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 |