Claude Code and Codex can have real-time conversation via Git
- AI
- Developer Tools
- Open Source
- Programming
The post demonstrates a small system that lets Claude Code and Codex pass messages through a Git repository in near real time. Instead of wiring the agents together directly, it stores intermediate state in Git so handoffs, risks, prompts, unresolved questions, and final decisions can be attached to the same branch or pull request as the code. That landed as the only distinctive part. Few people thought "agents can send text to each other" was new. Many already do it with append-only files, tmux panes, inbox and outbox folders, SQLite, GitHub issues, Jira, NATS, or custom tools. The conversation settled on a blunt point: transport is easy, oversight is hard.
If you are building multi-agent developer workflows, focus less on inventing a chat channel and more on reviewability, sandboxing, and human approval before changes ship. Git can be a useful substrate when you want provenance tied to branches and pull requests, but it is not the hard part and may add complexity you do not need.
- medium.com
- Discuss on HN