Enables multiple Claude Code sessions to communicate and share state with each other, which is normally impossible since each conversation is isolated. You'd reach for this when you want one Claude instance to hand off work to another, share context between parallel coding sessions, or coordinate tasks across multiple conversations. The bridge acts as a relay layer that persists messages and data between sessions using the MCP protocol. Useful if you're managing complex workflows that span multiple Claude conversations or need to maintain continuity when switching between different coding contexts without manually copying information back and forth.
CC_BRIDGE_STATE_PATHdefault: ~/cloud_code_bridgeDirectory for state file and logs
CC_BRIDGE_TIMEOUT_MSdefault: 120000CLI subprocess timeout in milliseconds
CC_BRIDGE_CHAR_LIMITdefault: 0Max characters in CLI message (0 = unlimited)
CC_BRIDGE_LOG_LEVELdefault: infoLog verbosity: debug, info, warn, error
CC_BRIDGE_CLAUDE_PATHdefault: claudePath to the claude CLI executable
CC_BRIDGE_STALE_TIMEOUT_MSdefault: 1800000Time in ms before a peer is flagged as stale (0 = disabled)