Agentic AI is Dead Without an Event-Driven Nervous System
Thomas Kunnumpurath
VP Systems Engineering · Solace

Agentic AI isn’t magic; it’s just really complex distributed computing with a smarter scheduler. And like any distributed system, if you don’t nail the communication, it’ll collapse. I’m seeing this play out daily with Solace Agent Mesh, our platform for orchestrating AI agents across enterprises. The buzz is real, the potential is immense, but the ugly truth is this: agentic AI is dead without a robust event-driven nervous system.
Most conversations around agentic AI focus on the LLM, the agent’s internal reasoning, or the prompt engineering. We’re captivated by the ‘brain’ of the agent. But that’s only part of the story. A brilliant brain stuck in a jar, unable to interact with the world, is useless. Enterprise-grade agentic AI needs to perform real actions, interact with legacy systems, discover new capabilities dynamically, and coordinate seamlessly. This isn’t a problem LLMs solve; it’s a systems integration challenge that event-driven architecture was literally designed for.
The Illusion of Intelligent Silos
I lead the Americas Solutions Engineering effort for Solace Agent Mesh, which means I’m in the trenches with clients across airlines, banking, manufacturing, and IoT, building and deploying real agentic systems. What quickly becomes clear is that if each agent is an isolated island, polling for updates or directly calling other agent’s APIs, you’re building a House of Cards. It’s brittle, slow, and impossible to scale beyond a handful of simple tasks.
Think about a logistics agent in an airline trying to re-route a flight during a snowstorm. It needs to know about gate availability, crew schedules, maintenance status, passenger connections, and even ground staff capacity – all in real-time, often across disparate, legacy systems. An agent can’t reliably poll a hundred different APIs every few seconds. It needs to react to events. A ‘gate change’ event, a ‘crew shift ends’ event, a ‘plane needs maintenance’ event.
Our work with Solace Agent Mesh explicitly leverages an event mesh for this. Agents register their capabilities and interests as topics, and the mesh handles dynamic discovery and intelligent routing. It’s the difference between an agent frantically searching for information and one that has relevant information delivered to it precisely when it’s needed.
Lessons from the Trenches: Banking to IoT
This isn’t just about AI. I learned this lesson years ago, at Deutsche Bank, when I led the multi-year program to migrate our mission-critical trading backbone from TIBCO Rendezvous to Solace. We were pushing millions of trades per second, with sub-millisecond latency requirements. The core challenge wasn’t just ‘sending messages.’ It was about guaranteed delivery, dynamic topic-based routing, fault tolerance, and predictable performance across a globally distributed system. Agentic AI, at its heart, is a more sophisticated form of distributed computing. The requirements for reliable, scalable, real-time communication haven’t changed; they’ve intensified.
Even in my personal projects, where I use tools like Claude Code as a force multiplier, the underlying principle holds true. When a client was skeptical about Solace’s IoT capabilities, I took an ESP32 camera module and, within a day, had a live video stream publishing individual frames as messages over Solace. A real-time web dashboard rendered the stream. The event – a new video frame being ready – drove the system. The AI-generated blog post pipeline I built for tkthetechie.io? It’s an agentic system. GitHub Actions ‘events’ trigger ‘agents’ (my TypeScript code calling Claude/Gemini) that ‘act’ (generate text, images, publish). The underlying mechanism is event-driven thinking, even if the tools are new.
The Event-Driven Advantage for Agents
So, what does a robust event-driven backbone actually give agentic AI? It transforms isolated intelligences into a coordinated, resilient, and truly autonomous system:
- Dynamic Capability Discovery: Agents don’t need to know where other agents or services reside, or what their precise APIs are. They simply publish events about what they can do (capabilities) and subscribe to events about what they need to know. The event mesh handles the matching and intelligent routing, making the entire system more agile.
- Asynchronous Coordination: Agents can execute long-running tasks without blocking. They emit a ‘task started’ event, and another agent interested in the outcome subscribes to a ‘task completed’ event. This eliminates tight coupling, improves system resilience, and allows for complex workflows to unfold efficiently.
- Real-time Context: Information reaches agents exactly when it becomes relevant, not on a poll schedule or through constant querying. This is critical for agents making time-sensitive decisions in dynamic environments, enabling true responsiveness.
- Scalability and Resilience: The event mesh inherently decouples producers from consumers, allowing independent scaling of agents and underlying services. If one agent goes down, others can continue processing, and the system gracefully handles failures.
- Auditability and Observability: Every event is a record of ‘what happened, when, and why.’ This is invaluable for debugging, auditing agent behavior, understanding system flow, and ensuring compliance, especially in regulated industries like finance.
Building the Nervous System First
We’re entering an era where AI agents won’t just advise; they’ll do. They’ll transact, automate, and orchestrate across vast enterprise landscapes. To move beyond single-task agents and into truly intelligent, autonomous systems, we need to stop thinking of agentic AI as solely an LLM problem. It’s fundamentally a distributed systems problem, and a powerful event-driven architecture is not a nice-to-have; it’s the foundational requirement for agents to discover, coordinate, and execute at scale.
Without an event-driven nervous system, agentic AI will remain a fascinating parlor trick, not a transformative enterprise force. It’s time to build the robust communication infrastructure before we expect the brain to run a marathon.