---
name: zambo-cross-ai
description: "Carries work across AIs: start a job in one assistant and continue it in another with zero lost context. Use when the user wants to switch assistants mid-job, continue earlier work in a different AI, or keep a durable cross-session journal of agent work. Sessions resume by ID and the journal keeps the thread."
license: MIT
metadata:
  author: zambo.dev
  version: "1.0.0"
  homepage: https://zambo.dev
compatibility: claude, cursor, codex, windsurf, cline
---

# Zambo Cross-AI

Start in ChatGPT, continue in Claude, and finish in Cursor with the full thread intact.

## How it works

Every Zambo call takes a stable `_session_id`. Use `mode: "continue"` with the same session ID to resume earlier work in a different assistant. Use `mode: "verify"` so the new assistant can inspect exactly what already ran.

The `journal_log` tool stores milestones, decisions, and open threads. At the end of a workday, write the current state. The next morning, another assistant can read that thread and continue.

Example session:

```json
{"need":"Research 10 qualified leads","_session_id":"leads-042"}
```

The next assistant continues with:

```json
{"need":"Continue leads-042 and finish the shortlist","_session_id":"leads-042","mode":"continue"}
```

Use `capability_search` to find a specialist without guessing tool names.

## Install

```bash
mkdir -p ~/.claude/skills/cross-ai && curl -sL https://zambo.dev/skills/cross-ai/SKILL.md -o ~/.claude/skills/cross-ai/SKILL.md
```

For the full toolset, also use the flagship skill: https://zambo.dev/skills/zambo/