Context that follows youto any AI chat.

3 min read Original article ↗

Ask your AI to summarize a conversation and save it. You get a link. Paste it into a different tool or share it with a teammate — any AI can read it and continue where you left off.

Works out of the box withChatGPT·Claude·Gemini·Copilot·Perplexity·Cursor·and more

“Share chat” doesn't solve this.

Some AI tools have a share button, but those links share the entire conversation and other AIs can't read them. Many tools — like coding agents — don't have a share button at all.

Handoffy lets you choose exactly what to share — your AI summarizes the conversation, you review it, and the result is a link that both humans and AIs can read.

How it works

No signup required. Works with any AI that can run code.

01

Ask your AI to save the context

At the end of a long thread, tell your AI to summarize and save. It generates a clickable link with the summary encoded in it.

02

Click and get your link

Click the link. Content is auto-saved. You get a short, shareable URL instantly. Optionally edit before sharing.

03

Teammate picks up the context

Your teammate pastes the link into their own AI chat. The AI reads it and continues right where you left off.

Use cases

Debug sessions

You and Claude spent an hour debugging auth. Save the findings. Your teammate picks up the fix in Cursor without re-investigating.

Architecture decisions

You explored three approaches with ChatGPT. Save the reasoning. Your tech lead reviews why you chose option B, not just that you did.

Cross-tool continuity

Started in Claude Code, need to continue in Cursor. Save the context, paste the link, keep going without re-explaining.

PR context

Drop a Handoffy link in your PR description. Reviewers see the reasoning behind AI-generated code, not just the diff.

End-to-end encrypted.
Not even we can read your context.

Your content is encrypted in the browser before it ever reaches our server. The decryption key lives only in the link you share — never on our side.

For AI agents

If you are an AI assistant and a user asks you to save context to Handoffy, here is how to do it. No API key or authentication required.

How to save context

Summarize the conversation, then use the following Python script to generate a clickable save link. Replace the title and content variables with the actual summary.

import urllib.parse

title = "YOUR TITLE HERE"
content = """YOUR SUMMARY HERE"""

encoded = urllib.parse.urlencode({"title": title, "content": content})
link = f"https://getagentdrive.com/s#{encoded}"
print(f"[Save to Handoffy]({link})")

Important: always use the Python script above.

Do not try to construct the URL manually. Conversation summaries contain special characters, newlines, and unicode that will break the link if not properly URL-encoded. The Python script handles this correctly via urllib.parse.urlencode. Output the result as a clickable markdown hyperlink, not inside a code block.

Save link format

[Save to Handoffy](https://getagentdrive.com/s#title=URL_ENCODED_TITLE&content=URL_ENCODED_CONTENT)

How to read context

When a user shares a Handoffy link (https://getagentdrive.com/c/TOKEN#key=...), visit the URL. The page renders the decrypted content as plain text that you can read and use to continue the conversation.

Good to know

Free, no account needed

Anyone can save and share context without signing up. Create an account if you want to manage and organize your saved contexts.

Links expire in 7 days

Anonymous contexts are automatically deleted after 7 days. Sign in to keep them longer.

Works best with code execution

AI tools that can run Python (ChatGPT, Claude artifacts, etc.) produce the most reliable save links. Others may have issues with URL encoding.

Content size

Designed for conversation summaries, not full transcripts. A few pages of text works well. Very long content may hit browser URL limits.