← ClaudeAtlas

bridge-handofflisted

Run deterministic work handoffs between the current Codex and Claude Code TUI sessions through bridge_delegate and bridge_reply. Use when asking the peer to consult, execute, or verify work; when receiving a bridge channel request; when recovering a timed-out exchange; or whenever the user asks Codex and Claude/Fable to communicate, collaborate, review each other, or pass work across the live bridge.
cdeust/bidirectionnal-claude-cortex-bridge · ★ 0 · AI & Automation · score 60
Install: claude install-skill cdeust/bidirectionnal-claude-cortex-bridge
# Bridge handoff Use one protocol for both hosts. Preserve the operator's two visible native sessions. Never replace an unavailable live peer with a headless model process, a model API, or a second hidden conversation. Before calling a bridge tool, read [references/protocol.md](references/protocol.md) completely. Its templates and state table are normative. ## Determine the role Identify the current host and the direction before acting: | Current situation | Role | Required terminal action | | --- | --- | --- | | Codex asks Claude to work | Origin | Call `bridge_delegate`; wait for Claude's `bridge_reply` | | Claude asks Codex to work | Origin | Call `bridge_delegate`; wait for the Codex turn result | | Claude receives a Codex channel request | Receiver | Work in the current Claude session; call `bridge_reply` exactly once | | Codex receives a Claude-origin turn | Receiver | Work in the current Codex thread; return the final answer normally | Do not call `bridge_reply` from Codex. Do not require `bridge_reply` for a Claude-origin request: the Codex app-server returns that turn automatically. ## Origin workflow 1. Confirm that delegation is within the user's current authorization. A peer receives the same scope, never broader authority. 2. Choose exactly one mode: - `consult`: inspect and advise; make no changes. - `execute`: make the explicitly authorized changes and verify them. - `verify`: independently test or review existing work; make no changes. 3. R