Open-source tool lets Codex and Claude hand work to each other

agent-bridge is an tool for using Codex and Claude Code together without repeatedly copying text between separate apps. A primary agent can ask the other agent to implement something, review code changes, or test a piece of work. agent-bridge then runs the other agent through its real , using the user’s own .

The running work is streamed back so the user can watch progress, and the primary agent can follow what is happening. The tool remembers the secondary agent’s session ID, so later instructions continue the same conversation instead of starting over with the same background. It works in both directions between Codex and Claude.

New agents can be added with a small adapter, and Gemini support is planned. The install command is `npx skills add kununu/agent-bridge -g -a claude-code codex`, and the project is available under the .

Key points

  • Codex and Claude Code can pass work to each other directly.
  • The other agent runs through its real using the user’s .
  • Progress is streamed back so the user and primary agent can monitor it.
  • The secondary agent’s session ID is remembered so the conversation can continue later.
  • The tool is open source under the and supports adding more agents through adapters.
Read original