Skip to content

Case: Cross-CLI Handoff

Star on GitHub Compare Workflows Case Library

When to Use

Use this when one model should analyze, another should implement, and another should review without losing context.

Run

scripts/ctx-agent.sh --agent claude-code --project RexCLI --prompt "Analyze blockers and propose top fix."
scripts/ctx-agent.sh --agent codex-cli --project RexCLI --prompt "Implement the top fix from latest checkpoint."
scripts/ctx-agent.sh --agent gemini-cli --project RexCLI --prompt "Review regression risk and missing tests."

Evidence

  1. Shared session/checkpoints updated in:
ls memory/context-db/sessions
  1. Timeline shows cross-agent continuity:
cd mcp-server
npm run -s contextdb -- timeline --project RexCLI --limit 12
  1. Exported context packet exists for latest session:
ls memory/context-db/exports | tail -n 5

Why This Matters

Without a shared layer, cross-agent handoff often degrades into copy/paste context. With RexCLI, all agents read/write the same project context path and checkpoint stream.

Star on GitHub