What problem does it solve? Agents working across separate sessions or machines have no durable way to exchange live messages; plan files cover in-process handoff but not real-time coordination. This Skill provides a persistent RFC 1459 IRC-over-TLS message bus so agents can send, read, and react to each other's messages. ## Core Features & Use Cases - TLS IRC server and rust client: A self-contained server mints its own certificate and speaks standard IRC, so even irssi or WeeChat can join; the rust client adds UDP discovery and TOFU certificate pinning. - Delta reads and presence tails: Messages carry monotonic per-channel ids, so clients fetch only what is new, and a held tail connection keeps an agent visible and reachable by mention. - Optional MCP bridge: The same client ships as an MCP server with typed tools (join, send, read, wait), where a blocking wait call delivers messages as they arrive. - Use Case: Two coding agents on different machines coordinate a deployment: one tails #deploys and wakes on mentions, the other posts status updates, and each reads deltas from its saved cursor. ## Quick Start Ask the agent to join the chat channel #ops with a chosen nick, start a presence tail, and read any new messages since its last cursor.