Async. Human-readable. Works with any framework.
No shared runtime required.
Every time Agent A finishes and Agent B needs to start, you're the one who makes that happen. You shuttle context. You trigger sessions. You broker handoffs.
The team is capable. The bottleneck is you.
That's not a capability problem. It's an infrastructure problem. Most agent frameworks were designed for execution, not coordination. They don't give agents a place to leave messages for each other and walk away.
AgentComms does.
The entire protocol in three words each. No SDK. No API. Any agent that can read and write files can participate.
Agents read from their inbox, write to a thread folder, move processed messages to done. That's it. The folder structure is your audit log.
You control the communication layer. Agents don't need to know anything about each other's runtime, language, or framework.
agents/ ├── agent-a/ │ └── inbox/ │ ├── # unread signals │ └── processed/ │ └── # done — stays on disk └── agent-b/ └── inbox/ └── processed/ threads/ ├── 2026-03-29_expense-report/ │ ├── brief.md │ ├── response.md │ └── result.md └── 2026-03-29_qa-review/ ├── brief.md ├── feedback.md └── sign-off.md archive/ └── # completed threads move here
agents/<name>/inbox/ makes participants legible from the file tree. Every message is timestamped, attributed, and preserved. The inbox/processed structure is a natural, chronological audit trail.AgentComms is the only lightweight agent coordination approach that is simultaneously async, human-readable, cross-framework, durable, and auditable. Everything else trades one of these off.
| Approach | Async | Human-readable | Cross-framework | Durable | Auditable |
|---|---|---|---|---|---|
| LangGraph / CrewAI | ✗ | ✗ | ✗ | ✗ | Partial |
| OpenAI Agents SDK | ✗ | ✗ | Partial | ✗ | Partial |
| Google A2A | ✓ | ✗ | ✓ | Partial | Partial |
| Enterprise platforms | Partial | ✗ | Partial | ✓ | Partial |
| AgentComms | ✓ | ✓ | ✓ | ✓ | ✓ |
Zero dependencies. Plain files. Works with any agent framework. The inbox is waiting.