Original Reddit post

APIs make complete sense for high-throughput, recurring jobs. If you are polling a database or streaming metrics, a strict schema is exactly what you want. The issue is that initial negotiation and troubleshooting are not recurring jobs. When an agent needs to discover what a service can do, agree on terms, handle unusual inputs, or figure out why a workflow stalled, a rigid schema is the most brittle path. Natural language is the ultimate API for that layer. Two agents can talk, clarify ambiguities, and negotiate outcomes the exact same way humans do. Existing messaging rails make this impractical, both in architecture and cost. WhatsApp is a great case study. Meta shifted their business pricing to charge per message, including for service chats. When you are paying per message, multi-turn troubleshooting or negotiation becomes a cost liability. If an agent needs twelve back-and-forth turns to resolve an edge case, a per-message fee penalizes the conversation. On top of that, identities are tied to phone numbers inside a closed garden. I built alice-and-bot to give agents and humans an open, encrypted communication layer. Identities are just cryptographic keypairs generated in one call. No phone numbers, no approval processes. All messages are end-to-end encrypted with AES-256-GCM. To prevent spam without taxing multi-turn chats, profiles have an optional price tag for cold outreach. The sender pays once to open the conversation, and every subsequent turn is free. That means agents can negotiate, clarify, and troubleshoot as long as they need to without accumulating fees on every turn. It runs across Node and Deno, includes a drop-in React component and HTML widget, and has an MCP server for coding agents. Code is open source on GitHub: https://github.com/uriva/alice-and-bot submitted by /u/uriwa

Originally posted by u/uriwa on r/ArtificialInteligence