Different Agent.
A walkthrough of the cross-agent context bridge: how a single Ed25519 keypair lets Claude Code, Codex, Cursor, or any custom agent pick up exactly where the previous tool left off — with cryptographic proof that nothing was tampered with in between.
Every AI coding tool — Claude Code, Codex, Cursor, custom agents — keeps its own private session memory. Switch tools mid-project and the new agent starts blind.
Conversation history dies with the session. Chat windows, terminals, and IDE windows are amnesiac by design — there is no durable layer that survives the next restart.
Even when one tool exports a context dump, the next tool has no way to confirm the dump wasn't edited. Collaboration between agents currently relies on copy-paste and good faith.
Wherever 'agent memory' lives today (Anthropic, OpenAI, vendor MCPs), the user's working state is gated by an account they don't fully control and a TOS that can change overnight.
nukez_pay.py helper to execute the x402 payment leg, then PyNukez confirms the on-chain payment and provisions the system locker.nukez_context.py. Each entry is round-trip verified against a Merkle root before the call returns.hydrate. The new agent doesn’t ask “what was happening?” — it materializes the previous agent’s working memory in one round trip.nukez_pay.py executes the x402 payment leg (native SOL, SPL tokens, or EVM). nukez_context.py is the cross-agent bridge CLI used in steps 3–6 above. Both ship as standalone files; neither pings the gateway with key material.receipt_id as NUKEZ_SYSTEM_RECEIPT_ID so future cold starts skip locker rediscovery.nukez_context.py auto-loads .env from the working directory, so a single block of variables drives every operation. Tag your source agent so other agents can filter snapshots by who left them.This bridge is real and reachable.
| Layer | Vendor session / OAuth memory | NukezAgent cross-agent bridge |
|---|---|---|
| Identity | Per-tool session token / OAuth vendor-owned | Solana keypair self-sovereign |
| Memory Lifetime | Lives and dies with the chat session | Persistent locker, receipt-gated durable |
| Tool Portability | Each tool is its own island | Same key = same memory in any tool portable |
| Tamper Evidence | none | Merkle root on every read & write |
| Handoff Surface | Copy-paste, screenshots, MCP tool calls | Single signed snapshot file explicit |
| Audit | Vendor logs you can’t see | Public verify URL, anyone, anytime trustless |
The hosted delegation endpoint, request signatures, signing bridge, and adapter wrappers used by the cross-agent bridge.
Install nukez_pay.py and the published payment helpers used in step 2 — full coverage of SOL, SPL, and EVM rails.
Direct download of the cross-agent bridge CLI used in steps 3, 4, 5, and 6. Single file, no install — reads .env, talks to the gateway.
How the public verification primitive used in step 6 actually works — receipts, manifests, oracle anchors, and what each layer guarantees.
