handoff_save
Save conversation context for transfer between AI chats or projects using structured templates or verbatim formats to preserve key decisions and implementation details.
Instructions
Save a conversation handoff for later retrieval. Use this to pass conversation context to another AI or project.
Format Selection
structured (default): Organize content using the template below. Much faster — reduces output tokens to ~5-20% of the original conversation. Best for most handoffs.
verbatim: Save the complete word-for-word conversation. Use only when exact wording matters (e.g., legal text, precise error messages).
Structured Template (for format="structured")
Omit sections that don't apply. Add custom sections if needed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | No | Unique identifier for this handoff (e.g., 'project-design-2024'). Auto-generated if omitted. | |
| title | No | Human-readable title for the handoff. Auto-generated from summary if omitted. | |
| format | No | Output format. 'structured' (default): organized template - faster. 'verbatim': complete word-for-word conversation. | structured |
| summary | Yes | Brief summary of the conversation context (2-3 sentences) | |
| conversation | Yes | The conversation content. For format='structured': use the structured template above. For format='verbatim': the COMPLETE verbatim conversation in Markdown format (## User / ## Assistant) — NEVER summarize or shorten messages. | |
| from_ai | No | Name of the source AI (e.g., 'claude', 'chatgpt') | claude |
| from_project | No | Name of the source project (optional) |