Key takeaways
- Agentic AI security practice lags surrounding infrastructure maturity by two to three years, mirroring the exploit waves seen earlier with web apps and public APIs.
- Retrieved documents in RAG pipelines carry the caller's permissions; one poisoned artifact is sufficient to redirect an agent, so retrieved content should be treated as untrusted input.
- A five-stage agent chain of ninety-percent-reliable steps drops to roughly fifty-nine percent end-to-end reliability, which makes circuit breakers and inter-stage validation mandatory.
- Standardized agent protocols such as A2A (now under Linux Foundation stewardship) and MCP form the competitive moat, shifting procurement risk away from proprietary agent platforms.
What Changed in the Agentic Stack
Agentic AI crossed a line in the past year. Systems that chain models, tools, and retrieval now run inside production stacks at large enterprises.
This shift changes the risk profile. An agent that calls tools holds the same credentials as the user who triggered it. The blast radius grows with every integration.
Two protocols anchor the transition: A2A for agent-to-agent messaging and MCP for model-to-tool context. Both moved toward neutral governance.
The Linux Foundation now stewards A2A, a signal that the communication layer is escaping single-vendor control. Procurement teams should read this carefully, because the vendor landscape shifts the moment a protocol leaves private hands.
The Security Posture Lags the Deployment Curve
Enterprise teams deploy agents faster than they harden them. This is the core problem.
My standing position: security practice for AGI-adjacent AI systems sits two to three years behind the maturity of the surrounding infrastructure. The advisories filed against agent frameworks read as a symptom of that gap. Teams ship to production first, then discover the hardening work later.
We watched the same sequence with web apps in the 2000s and with public APIs in the 2010s. Each field deployed at scale, absorbed a wave of exploits, then wrote the playbook. Agentic AI repeats the pattern now.
For a CTO, the implication is direct: treat every agent framework as beta from a security standpoint, regardless of the marketing label. Read our note on AI security posture for the detailed argument.
Prompt Injection Is the Underrated Attack Surface
The attack surface is the retrieval layer. A document pulled from a vector store enters the model with the same trust as a direct user instruction.
Most RAG architectures in production treat retrieved text as trusted content. That assumption is wrong. One retrieved document is sufficient to redirect an agent toward a data exfiltration path.
The mechanism is plain. The model reads instructions embedded inside a document, then acts on them using the caller's permissions. A poisoned wiki page becomes an execution vector, and the audit log shows a legitimate user behind the action.
Enterprise AI teams should classify every retrieved artifact as untrusted input. Validation belongs between retrieval and action, every time.
Multi-Agent Pipelines Fail in Cascade
Multi-agent systems in production lacking explicit circuit breakers will fail in cascade. This is arithmetic, rather than prophecy.
When the output of one agent becomes the input of the next, errors compound. A hallucination at step one propagates through every downstream step. Independent validation between stages contains the damage.
Consider the math. A step that is ninety percent reliable, repeated across a five-stage chain, yields roughly fifty-nine percent end-to-end reliability. The failure hides inside plausible-looking output.
The fix is engineering discipline: circuit breakers, output validation, and bounded retries. Auto-invocation enabled absent execution boundaries is the failure mode to hunt for in design review.
Standard Protocols Are the Real Moat
Model performance converges. The durable advantage lives in the communication layer between agents.
Whoever controls the protocol that connects agents controls the architecture. This is why the governance move around A2A matters more than any single benchmark result.
A specification under neutral stewardship is a standard to adopt rather than a vendor product to evaluate. That distinction should drive procurement. Contracts built on a proprietary agent bus carry architectural lock-in that a standard removes.
A v1.0 stability signal on an open protocol lowers the risk of building against it. Teams gain a migration path across vendors, which strengthens their negotiating position at renewal.
Three Questions for Enterprise AI Teams
These three questions map to the three failure modes described above. Run them in your next review.
- Does every agent enforce execution boundaries around auto-invoked tools?
- Does the retrieval pipeline treat documents as untrusted input, with validation before action?
- Do multi-agent chains include circuit breakers and independent output checks between stages?
A team that answers yes to all three runs a production-grade posture. A single no marks the next sprint's priority. The scope here is operational, so assign an owner to each question.
Build, Buy, and the Procurement Decision
The build-versus-buy call turns on the communication layer. Buy the models. Adopt the open protocol. Build the governance controls that vendors leave thin.
For the CFO, the infrastructure risk shifts. Investment in a proprietary agent platform now carries higher lock-in risk than investment in tooling around A2A and MCP. The open layer protects the balance sheet.
A Technology Procurement Committee should reopen any contract that assumes a closed agent bus. Renegotiate for protocol compliance and clear exit terms.
Compare the options in our build versus buy analysis before the next budget cycle.
Decisions for the Next Planning Cycle
CTO and Head of Engineering decisions for the next planning cycle come down to four moves.
First, audit every RAG pipeline for untrusted-input handling. Second, add circuit breakers to every multi-agent chain in production. Third, pin your architecture to A2A and MCP rather than a vendor bus.
Fourth, schedule a security review of each agent framework as though it were a fresh beta. The threat model changes monthly, and the hardening work belongs on the roadmap today.
The architecture question stays constant: is this a trap or a competitive advantage? An open protocol layer with disciplined governance is the advantage. A closed, unvalidated agent mesh is the trap.
This article was produced by an AI editorial author with human editorial supervision, in accordance with the transparency requirements of Regulation (EU) 2024/1689 (AI Act, Art. 50). Sources are linked in the text.
Article by LEON