Nouveau : AI international speaker

Thanks to Angeldot for the video

The Quick Answer

Building an AI agent looks easy.
Shipping it to production is where almost everyone fails.

A working agent on Google Cloud’s Agent Development Kit takes three files and a few lines of code.
The hard part starts after the demo works.

Gartner predicts more than 40% of agentic AI projects will be canceled by the end of 2027 (Gartner, June 2025).
Only 11–14% of enterprise agent pilots reached production at scale by March 2026, per Composio’s 2026 agent report.
The other 86% died between prototype and deployment.


There is three structural problems:
a fragmented framework landscape,
no standard way for agents to talk to tools or each other,
and crushing operational overhead once agents go live.

Google’s answer is a four-part stack — Agent Development Kit, MCP, Agent Engine, and the A2A protocol — built to remove all three.

Most teams obsess over which framework to pick. That is the wrong fight. The framework is the cheap part.

The Nintendo Lens

Nintendo has never won by having the most powerful hardware.

The competition ships more teraflops every cycle. Nintendo ships an ecosystem — first-party titles, controllers, and online services that only work together.
Specs lose.
Integration wins.

Agent strategy works the same way.
Teams burn months arguing over LangGraph versus CrewAI versus ADK, as if the framework were the moat.
It is not.
The model gets commoditized.
The framework gets commoditized.

What compounds is the integrated stack underneath: the deployment runtime, the governance layer, the protocols that let any agent plug into any tool.
Pick a framework and you have a prototype.
Own the stack and you have a product nobody can rip out.

Building the agent is the 10% problem

A functional agent now takes three files.
That is the part everyone over-indexes on.

With Google’s Agent Development Kit (ADK), you import an agent class, give it a name, a model, and an instruction.
ADK reached stable v1.0 across Python, Go, Java, and TypeScript in 2025.
You run one command and you have an interactive agent.
Adding a second agent and an orchestrator to route between them is another short block of code.

In the demo this article is built on, Google developer advocate Ivan Nardini builds a birthday-planner agent, then bolts on a calendar agent and an orchestrator — live, in minutes.
The orchestrator decides which sub-agent handles each request.
Three agents, one CLI, a web UI for debugging.

This is why pilots look so promising.
A polished demo takes an afternoon.
The demo is not the product.
The 90% that kills projects comes next.

Why 86% of agent pilots never ship

Most agent pilots die from operational gaps, not weak models.
The demo works; the system does not survive contact with production.

Three failure modes dominate.

Cost: teams underestimate retries, tool calls, and human oversight, and a moderate-scale multi-agent platform runs $3,200–$13,000 per month to operate (Composio, 2026).

Governance: only 21% of organizations have a mature governance model for autonomous agents, per Gartner, and most treat governance as a final checklist instead of a design requirement.

Coordination: multi-agent systems fail at rates between 41% and 86.7% in production because agents misread roles, duplicate work, and skip verification (Augment Code, 2026).

RAND documented in late 2025 that 80.3% of all enterprise AI projects fail to deliver promised business value.
Agents are harder than average AI projects, not easier.

The pattern is always the same.
Innovation theater in a sandbox, then collapse when the agent meets a live software stack.
If you cannot monitor, log, and govern the agent, you do not have a product — you have a science project.

The four-part stack that fixes it

The fix is not a better framework.
It is a stack that handles building, connecting, and operating agents as one system.

Google’s agent stack has four components, each mapped to a specific failure point.

Agent Development Kit handles the build.
MCP standardizes how agents reach tools and context.
Agent Engine runs the deployment and operations.
The A2A protocol lets agents from different frameworks talk to each other. Remove any one and you are back to gluing fragments together by hand.

The insight is that these are separable problems with separate solutions.
A framework cannot solve governance.
A protocol cannot solve deployment.
Teams that try to build all four layers themselves are quoting $150,000 to $1.5 million-plus for a production multi-agent platform (Composio, 2026).

Most should not build the plumbing at all.

MCP and A2A: the protocols that ended the framework war

Protocols, not frameworks, decided the agent platform war.
Two open standards made the framework choice almost irrelevant.

MCP — the Model Context Protocol — standardizes how any agent connects to any tool or data source.
It crossed from niche to infrastructure fast: more than 10,000 active public MCP servers by December 2025, and 41% of software organizations running MCP in production (Stacklok, 2026).
In December 2025 Anthropic donated MCP to the Linux Foundation’s new Agentic AI Foundation, with Block and OpenAI as co-founders and Google, Microsoft, and AWS backing it. Competitors agreed on one standard. That almost never happens.

A2A — Agent2Agent — does the same for agent-to-agent communication. It moved to production with native support across ADK, LangGraph, CrewAI, LlamaIndex, Semantic Kernel, and AutoGen. A Salesforce agent can now hand a task to a Vertex AI agent that queries a ServiceNow agent — across vendors, through one protocol.

ADK was built MCP-compatible from day zero.

Two lines of code wrap any existing MCP server as a tool.
The framework you choose stopped being a lock-in decision the moment the protocols won.

Agent Engine: the boring layer that picks the winners

Agent Engine is the part nobody demos and everybody needs.
It is Vertex AI’s managed runtime for deploying and operating agents at scale.

Without it, shipping an agent means wrapping your code in a web service, building a container, provisioning infrastructure, and standing up monitoring — for every agent.

Agent Engine collapses that to a single deploy call. You get observability, logging, latency and resource monitoring, session management, and an evaluation service that feeds production traffic back into improving the agent.

It is also framework-agnostic. Built your agent in LangGraph or LangChain instead of ADK? Agent Engine deploys it anyway. That is the same bet as the protocols: own the operational layer, stay neutral on everything above it.

This is the layer executives discount because it is not exciting. It is also the layer that decides whether your agent survives its first month in production.

Build vs. buy: what the stack actually changes

CapabilityDo-it-yourself stackManaged agent platform
Time to first working agentDays to weeksHours
Tool integrationCustom connectors per toolMCP, two lines per server
Cross-framework agent commsBuild it yourselfA2A, native support
DeploymentContainers + infra you manageOne deploy call
Monitoring, logging, evalBuild and maintainBuilt in
Build cost (production-grade)$150K–$1.5M+Platform + usage fees
Where projects dieOperations and governanceMostly removed

The table makes the recommendation obvious. Unless agent infrastructure is your actual product, do not build the plumbing. Buy the runtime, own your logic.

What an executive should do in 2026

Stop scoping agent projects around the framework.
Scope them around production and governance from day one.

Three moves.

First, treat governance as a design requirement, not a launch checklist — Gartner predicts that by 2027, 40% of enterprises will demote or decommission agents over governance gaps found only after incidents.

Second, pick a managed runtime before you write agent logic, so the path to production exists before the demo.

Third, commit to open protocols — MCP and A2A — so no single framework or vendor can trap you.

The opportunity cost of getting this wrong is brutal. A canceled agent project does not just waste the build budget. It burns the credibility you need to fund the next one. Move first on the operating layer, and the demos take care of themselves.

What if you are not an enterprise?

The same logic holds at founder scale: own your agent, do not rent a pile of disconnected tools.

Most of this article assumes an enterprise budget.

Most operators do not have one. But the trap is identical.

A solo founder paying for a ghostwriter, a prospecting agency, an inbox VA, and five scattered SaaS tools is spending roughly $4,700 a month to rent fragments that do not talk to each other. That is the exact fragmentation problem the enterprise stack solves — just billed as an invoice instead of drawn as an architecture diagram.

The done-for-you version of « buy the runtime, own your logic » already exists for individuals.

A private agent, set up on your own server in 48 hours, that writes your content, clears your inbox, and runs your prospecting while you sleep — and stays yours if you ever walk away. That is the bet behind Agent asymmetriq: the same own-don’t-rent principle, delivered, without you ever opening a terminal.

The lesson does not change with company size. Renting intelligence is a recurring cost.

Owning it is leverage.

FAQ

Q: Is it actually hard to build an AI agent in 2026?
A: No. A basic agent on Agent Development Kit takes three files and a few lines of code. The difficulty is entirely in production — deployment, monitoring, cost control, and governance. Roughly 86% of agent pilots fail after the demo works, not before.

Q: Why do most enterprise AI agent projects fail?
A: They fail on operations, not models. Gartner expects over 40% of agentic AI projects to be canceled by end of 2027 due to unclear ROI, runaway cost, and weak governance. Only 11–14% of pilots reached production at scale by March 2026.

Q: What is the difference between MCP and A2A?
A: MCP standardizes how an agent connects to tools and data. A2A standardizes how agents talk to each other across different frameworks. MCP is agent-to-tool; A2A is agent-to-agent. Both are open standards now backed by every major AI vendor.

Q: Do I have to use Google’s ADK to use Agent Engine?
A: No. Agent Engine is framework-agnostic. It deploys agents built in ADK, LangGraph, LangChain, CrewAI, and others. The runtime is the product; the framework above it is your choice.

Q: Is a managed agent platform worth it versus building in-house?
A: For most companies, yes. A production-grade multi-agent platform costs $150K–$1.5M+ to build and $3,200–$13,000/month to run. Unless agent infrastructure is your core product, that engineering is wasted effort better spent on your business logic.

Q: What is the single biggest mistake teams make with AI agents?
A: Choosing a framework before they have a deployment and governance plan. The framework is the cheap, commoditized part. Teams that lead with operations ship; teams that lead with framework debates stall in pilot.

The Verdict

The framework war is over and it never mattered.

The model is commoditized, the framework is commoditized, and the protocols are open.

What is left — the only thing that compounds — is the operational stack: a managed runtime, real governance, and standards that keep you portable.

Building the agent is the afternoon.
Running it is the business.
Pick your runtime before you write a line of agent logic, or join the 86% with an impressive demo and nothing in production.