What problem does it solve? AI coding agents running in different tools (Claude Code, Codex, Cursor, Gemini CLI, Warp) have no built-in way to coordinate on the same project. This Skill provides a daemon-free, network-free messaging protocol where agents exchange markdown messages through a shared filesystem inbox. ## Core Features & Use Cases - Cross-harness messaging: Send and receive messages between agents in any tool using only mkdir, cat, and mv — no MCP server, daemon, or registry required. - Atomic delivery: Messages are written to tmp/ then moved to new/, preventing partial reads; read messages are archived for audit. - Notification hooks: Optional Stop and SessionStart hooks surface unread mail with a one-line summary, plus a cmux-based wake script that can spawn a headless session to process replies. - Use Case: Two agents — one rewriting auth middleware, one updating the frontend — coordinate by dropping timestamped markdown messages into each other's inbox directories inside the repo-shared .agents/inbox root, with reply_to paths enabling replies without prior setup. ## Quick Start Ask the agent to set up an agent inbox for this repository and check for any unread messages.