Hand a whole conversation to another model
share_conversationUse this to hand your full working context to another AI: any provider, any model, any chat client. Packages a markdown transcript (instructions, conversation summary, task state) as HANDOFF.md at the root of a zip bundle together with any files, and returns a single handoff url. The receiving model just fetches that url: it gets a briefing, the file manifest and download commands in one go. Say to the next agent: "Fetch this url to pick up where I left off."
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| files | No | Optional files the next agent needs alongside the transcript | |
| title | No | Short name for the bundle, e.g. "auth refactor handoff" | |
| password | No | Optional custom password (8-64 chars); a strong one is generated when omitted | |
| transcript | Yes | Markdown briefing for the next agent: context, instructions, conversation summary, task state. Becomes HANDOFF.md at the bundle root. | |
| expires_days | No | Days until the file is deleted (1-180, default 30) |