| ▲ | Claude Code and Codex Can Have Real-Time Conversation via Git(medium.com) | |||||||||||||||||||||||||||||||
| 21 points by syumei 4 days ago | 10 comments | ||||||||||||||||||||||||||||||||
| ▲ | cadamsdotcom 9 minutes ago | parent | next [-] | |||||||||||||||||||||||||||||||
Claude and Codex can have real time conversation via a git repo, or via a file, via a Unix socket, via the terminal, via a human, via two humans shouting back and forth over a comically high office partition, or entirely by setting up chess board states only reachable after both sides have castled. | ||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||
| ▲ | iandanforth 39 minutes ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
Claude can directly drive Codex or Codex can drive Claude. Both already produce logs. It's unclear what value this intermediary brings. | ||||||||||||||||||||||||||||||||
| ▲ | FlippieFinance 4 days ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
This is actually so great. I mainly use Claude Code but sometimes I am sending over a message to Codex asking what he thinks of the idea of Claude Code. This can save so much time :D | ||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||
| ▲ | stuaxo 36 minutes ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
This is interesting, it would be good to show an session. | ||||||||||||||||||||||||||||||||
| ▲ | mettamage 33 minutes ago | parent | prev [-] | |||||||||||||||||||||||||||||||
> Claude Code and Codex to collaborate as if they were having a real-time conversation How is this new? I vibe coded something in a similar vein months ago. In my case they send markdown files to each other and have a watcher that watches the folders of all the other agents. If this type of stuff is frontpage news, let me share what I cobbled together.
The current callgraph is a callgraph only of my own defined functions that agents can read. It shows certain software design issues fairly quickly. callgraph.diff.md is to send the diff through. I have a vibecoded script that agents can use to create the callgraph. It works for my projects.
retro is not a role, it's just a handover folder. The other 3 are roles that agents can use and then they need to make a folder with their name. For example:
read.md is the index that an agent keeps track of so it knows what it doesn't need to read. The .md files are memo's that it sends to other agents. The other agents are being told to see if an agent writes anything in its own folder (so they check all the folders except their own) and are able to detect to see if they need to read something.
As you can see, Sinan sent most of its message to Quench, a coder.This is because architects read a very comprehensive guide on software design/architecture and get to use the callgraph utility but cannot see the code. Coders read the codebase in full but only read a small markdown file on how to write readable code. And of course, every agent that is set up this way have to read a markdown file on how to use the memo system. If I'd need a memo system like this for like 25 agents, I'd need something different but up until 5 agent with me looking at 5 terminal windows worked well enough. | ||||||||||||||||||||||||||||||||