← zambo.dev

Continuity · Zambo

Cross-AI continuity

Cross-AI continuity is the ability to start live tool work in one AI client, continue it in another, and verify the same execution trail without rebuilding the task from a transcript.

The problem is simple: a model switch normally loses the session, the tool results, and the evidence of what already happened. Zambo keeps a stable session trail, gives each call a UUID, timestamp, SHA-256 hash, and public receipt page, and exposes continue and verify modes to the connected host AI.

How it works

  1. Connect one MCP server at https://zambo.dev/api/mcp.
  2. Call zambo_universal with the user's exact goal and one stable _session_id.
  3. Pass that same session ID to the next compatible AI and use mode:"continue" for unfinished work.
  4. Use mode:"verify" before declaring the outcome complete.
{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"zambo_universal","arguments":{"need":"Continue the research and verify the remaining facts.","mode":"continue","_session_id":"your-stable-session-id"}}}

What the receipt provides

The receipt identifies the observed call, records its timestamp, commits the returned output with SHA-256, and links to a public page that can be checked independently. It does not claim that Zambo observed an outside-world outcome it did not receive from a tool.

Install the MCP connection → · Read the full continuity guide →