One skill to let AI agents work as peers: make Codex and Claude talk to each other

Reddit r/AI_Agents Tools

Summary

A developer created an open-source skill that bridges Claude Code and Codex CLIs, allowing AI agents to hand off tasks to each other without manual copy-pasting.

I use Claude Code and Codex side by side, and I got tired of copy-pasting between two apps every time I wanted one to pick up where the other left off, do some task, or perform a review. So I wrote a skill that lets them hand work to each other directly. The skill implements some plumbing around agents' CLIs, so that they can communicate efficiently. You tell a primary agent something like "ask Codex to implement this" or "have Claude review this diff." It runs the other one through its actual CLI (using your subscription), streams the work back so you (and a primary agent) can monitor it, and remembers the session ID of the secondary agent's chat, so the next message from the primary agent continues it instead of re-explaining everything. It goes both ways, and adding a new agent is just a small adapter drop-in, so Gemini Antigravity will be added soon. You can point the other agent at building something, reviewing your code, or trying to break it. npx skills add kununu/agent-bridge -g -a claude-code codex It's Open Source MIT. Curious whether it's useful to anyone else, and open to feedback.
Original Article

Similar Articles

AI agents still suck, so I built my own

Reddit r/AI_Agents

The author built a custom AI agent application wrapping Claude Code and upcoming Codex support, focusing on composable workflows and seeking community feedback.

Codex-maxxing

Hacker News Top

Jason Liu shares how he uses OpenAI's Codex for knowledge work beyond coding, leveraging durable threads, voice input, and steering to integrate coding agents into his broader workflow.

@uniswap12: 3-minute guide to centrally managing skills for Codex and Claude Code (with prompts included). When using multiple AI tools to write code, the same skill has to be maintained in several copies. If you modify one and forget to sync the others, you'll spend ages debugging only to find out the versions are inconsistent. Now the most troublesome thing is not...

X AI KOLs Timeline

This article introduces how to use symbolic links to centrally manage skills for AI tools like Codex and Claude Code, avoiding version fragmentation and inconsistency, and provides prompts for AI to automatically organize and migrate them.