<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Sonika Janagill</title>
    <description>The latest articles on DEV Community by Sonika Janagill (@sonikaj).</description>
    <link>https://dev.to/sonikaj</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2971186%2F2b70c221-9ccf-44eb-8392-154fcbc25a74.jpg</url>
      <title>DEV Community: Sonika Janagill</title>
      <link>https://dev.to/sonikaj</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sonikaj"/>
    <language>en</language>
    <item>
      <title>Instructions. Skills. Tools. How Google Embedded Skills Into Every Layer of Its Agent Stack</title>
      <dc:creator>Sonika Janagill</dc:creator>
      <pubDate>Sat, 25 Apr 2026 18:30:55 +0000</pubDate>
      <link>https://dev.to/gde/instructions-skills-tools-how-google-embedded-skills-into-every-layer-of-its-agent-stack-5415</link>
      <guid>https://dev.to/gde/instructions-skills-tools-how-google-embedded-skills-into-every-layer-of-its-agent-stack-5415</guid>
      <description>&lt;h2&gt;
  
  
  Agent Skills Adoption
&lt;/h2&gt;

&lt;p&gt;&lt;span&gt; &lt;em&gt;Prompt Bloat has a name and a fix. Skills are now load-bearing across Google’s agent stack: from on-device Gemma 4 to enterprise Gemini, from coding assistants to the official Cloud repository&lt;/em&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkogb5p0p6obphfmbq3l6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkogb5p0p6obphfmbq3l6.png" alt="Instructions. Skills. Tools." width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;It&lt;/strong&gt; usually starts with good intentions.&lt;/p&gt;

&lt;p&gt;A team builds an agent. It works, mostly, until it misses a naming convention or ignores an approval workflow. So, you add a paragraph to the system prompt. Then another to handle an edge case. Then three more for stakeholder rules.&lt;/p&gt;

&lt;p&gt;Six months in, the prompt is a 4,000-word monolith. Nobody knows what is still relevant, but everyone is afraid to touch it. The agent is now slower and less reliable than when it had 200 words of instructions. Every “fix” risks a regression.&lt;/p&gt;

&lt;p&gt;This is the reality of &lt;strong&gt;Prompt Bloat&lt;/strong&gt; : the silent technical debt of enterprise AI.&lt;/p&gt;

&lt;p&gt;This has been the enterprise agent bottleneck for two years. I recently spoke with a practitioner managing 100+ production skills; they described a marketing auditor that loaded 15,000 tokens of instructions on every invocation. It left almost no context window for the actual content being audited. The agent “worked,” but it was drowning in its own instructions. The output was mediocre because the reasoning tax was too high.&lt;/p&gt;

&lt;p&gt;At Google Cloud Next ’26, Google productized the solution: &lt;strong&gt;Skills&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The core thesis is that Skills are the “settled” abstraction for agentic workflows. They occupy the vital middle ground:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Better than Prompts:&lt;/strong&gt; Because they are reusable and persistent.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Lighter than Fine-tuning:&lt;/strong&gt; Because they iterate at the speed of business logic.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Smarter than RAG:&lt;/strong&gt; Because they are active expertise, not just passive retrieval.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Richer than Tools:&lt;/strong&gt; Because they encode “how” and “why,” not just “do.”&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Skills are small, named, dynamically loaded units of expertise. With Google shipping them across three distinct surfaces, the industry debate over what to call this pattern is over. The real question begins: who is responsible for governing yours?&lt;/p&gt;

&lt;h3&gt;
  
  
  The Pattern: How Google Embeds Open Abstractions
&lt;/h3&gt;

&lt;p&gt;Google’s shipping strategy follows a consistent &lt;strong&gt;“Adoption Flywheel”&lt;/strong&gt; : observe the abstractions the developer community is independently building, adopt the open standard, and embed it as a first-class primitive across the stack.&lt;/p&gt;

&lt;p&gt;Recognising this pattern tells you exactly where to invest your time:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;MCP.&lt;/strong&gt; Anthropic released the Model Context Protocol as a lightweight standard for connecting agents to external tools and data sources. Google’s response was not to build a competing standard. Within months, managed MCP servers were shipping for Cloud Run, BigQuery, AlloyDB, Cloud SQL, and the full Workspace suite. Google adopted the standard and built infrastructure around it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A2A.&lt;/strong&gt; Google co-authored the Agent-to-Agent protocol for cross-agent communication, then handed governance to the Linux Foundation’s Agentic AI Foundation rather than keeping it proprietary. It now has 150 organisations in production.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Skills.&lt;/strong&gt; The ecosystem independently discovered that agents need loadable expertise. Google productized it, kept the open &lt;code&gt;agentskills.io&lt;/code&gt; name, and moved it from a “sidebar feature” to “load-bearing” infrastructure.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The practical implication:&lt;/strong&gt; When Google adopts an open abstraction, the format stabilises, but the complexity shifts. You can stop worrying about the file format and start worrying about the governance. Invest in the abstraction, not the vendor-specific implementation.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fikingdoamvv1o28qpswo.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fikingdoamvv1o28qpswo.png" alt="Google mainlines open ecosystem abstractions into load-bearing infrastructure" width="800" height="293"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Three Surfaces Where Skills Have Now Shipped
&lt;/h3&gt;

&lt;h4&gt;
  
  
  1. &lt;a href="https://cloud.google.com/blog/products/ai-machine-learning/whats-new-in-gemini-enterprise" rel="noopener noreferrer"&gt;Gemini Enterprise&lt;/a&gt;: Skills as a First-Class Product Feature
&lt;/h4&gt;

&lt;p&gt;The announcement of Skills inside the Gemini Enterprise marks a shift from “Linear Context Loading” to “Dynamic Skill Dispatching”.&lt;/p&gt;

&lt;p&gt;The technical cost of large system prompts is the “Lost in the Middle” phenomenon. When irrelevant instructions saturate the context window, reasoning degrades. The model spends so much of its “cognitive overhead” parsing the prompt that it has little capacity left for the actual task.&lt;/p&gt;

&lt;p&gt;Skills solve this via &lt;a href="https://platform.claude.com/docs/en/agents-and-tools/agent-skills/overview#how-skills-work" rel="noopener noreferrer"&gt;&lt;strong&gt;Progressive Disclosure&lt;/strong&gt;&lt;/a&gt; in three stages:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Discovery:&lt;/strong&gt; The agent knows the skill exists via a minimal metadata footprint.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Activation:&lt;/strong&gt; The full instructions load only when the task requires that specific expertise.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Execution:&lt;/strong&gt; The agent follows the structured Markdown and templates to complete the work.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8xwydiut27eqbqay4y4b.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8xwydiut27eqbqay4y4b.png" alt="Agent Skills: Progressive Disclosure in Three Stages" width="800" height="288"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;By preserving the &lt;strong&gt;reasoning budget&lt;/strong&gt; for the task rather than the instructions, you get the breadth of a deeply specialised agent without the context tax on every invocation.&lt;/p&gt;

&lt;p&gt;For enterprise teams, Skills are not a standalone feature; they are part of a coherent operating model. They sit alongside &lt;strong&gt;Agent Designer&lt;/strong&gt; , secure execution sandboxes, and a central &lt;strong&gt;Inbox&lt;/strong&gt; for monitoring activity. This is Google providing the infrastructure to manage agents at an organisational scale, rather than just building better chatbots.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkwah03renkvgkb2dtk6p.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkwah03renkvgkb2dtk6p.png" alt="Gemini Enterprise Skills for reusable actions" width="800" height="566"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  2. &lt;a href="https://developers.googleblog.com/agents-cli-in-agent-platform-create-to-production-in-one-cli/" rel="noopener noreferrer"&gt;Agents CLI&lt;/a&gt;: Skills for Your Coding Assistant
&lt;/h4&gt;

&lt;p&gt;The second surface is where the engineering actually happens: the terminal and their coding assistant. Polong Lin, Google’s Staff DevRel Manager for ADK, has positioned the Agents CLI as the bridge between a cool demo and a production-ready AI workforce. It is pre-GA and available now:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Preferred: uvx handles an ephemeral environment&lt;/span&gt;
uvx google-agents-cli setup 

&lt;span class="c"&gt;# Alternative: install specific skills &lt;/span&gt;
npx skills add google/agents-cli
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The Agents CLI turns assistants like Claude Code or Gemini CLI into ADK specialists. At launch, seven “Workflow Skills” ship out of the box to handle the end-to-end development lifecycle:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmpyqjqw3udq0t3ds71l6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmpyqjqw3udq0t3ds71l6.png" alt="Agents CLI Skills" width="800" height="518"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What this means in practice: when you invoke google-agents-cli-scaffold, inside Claude Code, your coding assistant loads a skill that carries Google's conventions for ADK project structure, component naming, and integration patterns. It does not need to guess or hallucinate ADK-specific idioms. The expertise is encoded in the skill. The skills work immediately.&lt;/p&gt;

&lt;p&gt;What takes longer is discipline: knowing when to write a custom skill versus when to extend a system prompt, and agreeing on that line across your team.&lt;/p&gt;

&lt;p&gt;The real breakthrough, however, is the Official Agent Skills Repository: &lt;a href="https://github.com/google/skills" rel="noopener noreferrer"&gt;github.com/google/skills&lt;/a&gt;. Thirteen skills at launch, covering the most-used Google Cloud products and architectural concerns:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Product skills:&lt;/strong&gt; AlloyDB, BigQuery, Cloud Run, Cloud SQL, Firebase, Gemini API, GKE&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Well-Architected Pillar skills:&lt;/strong&gt; Security, Reliability, Cost Optimisation&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Recipe skills:&lt;/strong&gt; Authentication, Onboarding, Network Observability
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx skills &lt;span class="nb"&gt;install &lt;/span&gt;github.com/google/skills
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;These are agent-first documentation: compact, grounded expertise written for agents to consume, not humans to read. Accurate terminal commands. No hallucinated API calls. No outdated SDK syntax. The Well-Architected Pillar skills are particularly notable: they encode Google’s architectural judgement as loadable expertise, not a 200-page PDF that nobody reads.&lt;/p&gt;

&lt;p&gt;The third surface is the most unexpected, and the most revealing about where this is heading.&lt;/p&gt;

&lt;p&gt;Google AI Edge Gallery, available on iOS and Android, allows you to build and experiment with AI experiences that run entirely on-device. At Next ’26, Google announced the launch of Agent Skills: one of the first applications to run multi-step, autonomous agentic workflows entirely on-device. Powered by Gemma 4, Agent Skills can augment the knowledge base, enabling Gemma 4 to access information beyond its initial training data using skills.&lt;/p&gt;

&lt;p&gt;The Gemma 4 edge variants (E2B and E4B) run under 1.5GB of RAM on mid-range to flagship devices. The LiteRT-LM runtime processes 4,000 tokens across two Agent Skills in under three seconds. The model decides autonomously which of its available tools to invoke, in which sequence, and composes the response entirely on-device.&lt;/p&gt;

&lt;p&gt;The critical detail here is the format. The skill powering the Gallery is not a proprietary Google file, it is the SKILL.md format from &lt;a href="https://agentskills.io" rel="noopener noreferrer"&gt;agentskills.io&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;This creates a massive architectural implication for the enterprise. You can build a custom skill on a phone, test it offline, and deploy the exact same file to a cloud-hosted Gemini 3.1 instance on Vertex AI. The Skill has become the portable container for cognition: &lt;strong&gt;“Docker for Prompts.”&lt;/strong&gt; No other stack offers that path right now.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ft6dey3u44np8f97h3bqg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ft6dey3u44np8f97h3bqg.png" alt="Skills: Docker for Prompts" width="800" height="441"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  The Convergence: This Is Not Coincidence
&lt;/h3&gt;

&lt;p&gt;Three surfaces. Three implementations of the same abstraction. And the underlying format is converging on something that started at Anthropic. When you see the same abstraction ship across a web app, a CLI tool, and a mobile runtime simultaneously, it is no longer a “feature.” It is a protocol.&lt;/p&gt;

&lt;p&gt;The Day 2 developer keynote demo built a planning agent using ADK, MCP servers, and Agent Runtime, and described what the agent needed in three words: &lt;strong&gt;Instructions, Skills, and Tools&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://docs.cloud.google.com/agent-registry/overview" rel="noopener noreferrer"&gt;Agent Registry&lt;/a&gt; reinforces this. Agent Registry maintains a central library of approved tools, indexing every internal agent, tool, and skill. That is governance infrastructure, not just a catalogue. When skills are indexed by Agent Registry, the “which skill was loaded?” accountability question I raised earlier has a concrete answer at the platform level.&lt;/p&gt;

&lt;p&gt;It also helps to see where Skills sit relative to the other layers of the 2026 agent stack:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqwkao8i0hqdmx84n2mta.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqwkao8i0hqdmx84n2mta.png" alt="Where Skills sit relative to the other layers of the 2026 agent stack" width="800" height="366"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Skills and other layers of the agent stack&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Each layer solves a different problem. The mistake most enterprise teams make is trying to solve the Skills (logic and process) problem with more RAG (more data). Google’s implementation across these three surfaces forces a much-needed discipline: keep your tools mechanical, your data accessible, and your expertise modular.&lt;/p&gt;

&lt;p&gt;This is what protocol convergence looks like before the formal standard exists. The ecosystem finds the right shape. Then the spec follows. MCP went through this in 2024. A2A went through this in 2025. Skills are going through it now.&lt;/p&gt;

&lt;p&gt;The practical takeaway: invest in the abstraction regardless of which vendor surface you build on first. The format will stabilise. The Skills catalogue you build this year will not be obsolete when the spec lands.&lt;/p&gt;

&lt;p&gt;I wrote about the governance side of this challenge before Google named it, in &lt;a href="https://sonikajanagill.com/articles/enterprise-agent-skills-governance/" rel="noopener noreferrer"&gt;“The Skills Explosion Is Here. Enterprise Governance Isn’t.”&lt;/a&gt; The moment I described there, where a developer drops a GitHub link to 100+ community skills and forty reaction emojis appear in Slack, arrives faster when three surfaces of Google’s stack ship Skills simultaneously.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Enterprise Reality
&lt;/h3&gt;

&lt;p&gt;For the past year, our core challenge hasn’t been selecting models or frameworks. It has been: &lt;strong&gt;How do we make individual experimentation compatible with organisational standards?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The tension is genuine. A developer working on a client campaign in Berlin has domain context that a platform team in London cannot anticipate. If skills are locked down centrally, that contextual expertise cannot reach the agent. If skills are entirely uncontrolled, you cannot audit what your agents are doing or ensure quality across client deliverables.&lt;/p&gt;

&lt;p&gt;Google’s architecture addresses this through a Layered Composition Model:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Organisation Level&lt;/strong&gt; : Global standards, brand voice, and compliance rules (managed via Gemini Enterprise).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Project Level&lt;/strong&gt; : Client-specific conventions and workflow patterns (managed via Agent Registry).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Personal Level&lt;/strong&gt; : Individual experimentation and localised hacks (managed via Agents CLI).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This stack allows these layers to compose, but it doesn’t yet solve the governance challenge sitting above the architecture. We still have to answer: Which skills are deprecated? Who owns the versioning when the underlying model changes? How do we evaluate a skill’s reliability before it reaches a production agent?&lt;/p&gt;

&lt;p&gt;The infrastructure is here. Now, the governance tooling must catch up to the adoption rate.&lt;/p&gt;

&lt;h3&gt;
  
  
  Three Open Questions for the Post-Launch Reality
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Skills vs. MCP tools: when is each right?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Tools are mechanical; Skills are cognitive.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Tools are stateless and specific: “Call this API, return this schema.”&lt;/li&gt;
&lt;li&gt;Skills carry instructions, conventions, and internal logic.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;The Heuristic:&lt;/strong&gt; If it’s a single function call, it’s a tool. If it requires the agent to reason about sequencing, error handling, or escalation, it’s a skill. In agentic commerce, an API call to update a product attribute is a tool. Knowing when an attribute is missing, how to verify its quality, and when to escalate to a human is a  &lt;strong&gt;skill&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How do you version a skill when the underlying model changes?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A skill written for Gemini 2.0 may behave differently under Gemini 3.1. The instructions are identical; the model’s interpretation is not. This is the least-solved governance problem in the ecosystem. Treat model upgrades as potential regressions. Use the google-agents-cli-eval skill to run benchmarks against your catalogue before promoting a new model to production. I expect &lt;strong&gt;"Pinned Skills"&lt;/strong&gt; -expertise locked to a validated model version-to become a standard enterprise requirement.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Who owns the skill library in your organisation?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The tempting answer is “the platform team,” but that doesn’t scale. Ownership should follow the domain:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Foundational Skills:&lt;/strong&gt; (Formatting, code patterns) belong to the Platform Team.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Workflow Skills:&lt;/strong&gt; (Jira conventions, onboarding) belong to Domain Owners.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Personal Skills:&lt;/strong&gt; Belong to the Individual until they are contributed upstream.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Ownership is accountability. When an agent fails, “Which skill was loaded?” needs a traceable answer. Agent Registry (announced at Next ’26) provides the platform-level index, but you must build owner attribution into the skill definition itself.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The “Hidden” Problem: Skill Collision&lt;/strong&gt; : As skill catalogues exceed 50+ skills, descriptions will inevitably overlap. The agent’s router will pick the wrong one, leading to subtle, high-stakes errors. Forward-looking teams are already building Skill Leaderboards to track success rates across model iterations and catch these collisions before they reach the client.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4w32pi0srbanyvsn7s0l.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4w32pi0srbanyvsn7s0l.png" alt="Skills: Collision Governance" width="800" height="316"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  What to Do Next!
&lt;/h3&gt;

&lt;p&gt;The Skills abstraction is now shipped, named, and available across three Google surfaces. The infrastructure question is largely settled. What remains is the governance question.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If your team has agents in production,&lt;/strong&gt; Audit the knowledge your agents currently load. If expertise is buried in 4,000-word system prompts with no clear ownership, use Skills to decompose that monolith into maintainable, versioned units. Move from “Prompt Engineering” to “Skill Architecture.”&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If your team is building new agents now:&lt;/strong&gt; Start with the Agents CLI. Use uvx google-agents-cli setup to bootstrap your first ADK agent and explore the bundled workflow skills. Then, install product-specific expertise from the official Agent Skills repository: npx skills install github.com/google/skills Learn the pattern with these "training wheels" before you are tasked with maintaining a production fleet of 40+ custom skills.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If you are thinking about the enterprise governance layer:&lt;/strong&gt; Review my earlier analysis on &lt;a href="https://sonikajanagill.com/articles/enterprise-agent-skills-governance/" rel="noopener noreferrer"&gt;the security and governance challenge&lt;/a&gt;. covers the vulnerability data from January 2026 (one in four public skills contains at least one vulnerability), the three-tier classification model for external skills (Green/Amber/Red), and the progressive disclosure pattern that prevents context from drowning your agents.&lt;/p&gt;

&lt;p&gt;Google’s launch of Agent Registry makes these challenges visible, but it doesn’t solve them for you. The registry provides the index, but your team must provide the policy.&lt;/p&gt;

&lt;p&gt;The governance conversation starts now. Your skills catalogue, and the rigour with which you govern it, will define the quality floor of every agent your team ships.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Sonika Janagill is a Google Developer Expert in Cloud AI &amp;amp; Google Cloud, Lead Backend Engineer at VML, and Data/MLOps Engineer at WPP Media. She writes about agentic systems, MLOps, and enterprise AI at&lt;/em&gt; &lt;a href="https://sonikajanagill.com" rel="noopener noreferrer"&gt;&lt;em&gt;sonikajanagill.com&lt;/em&gt;&lt;/a&gt;&lt;em&gt;.&lt;/em&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  References and further reading
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://cloud.google.com/blog/topics/developers-practitioners/level-up-your-agents-announcing-googles-official-skills-repository?utm_campaign=deveco_gdemembers&amp;amp;utm_source=deveco" rel="noopener noreferrer"&gt;Level Up Your Agents: Announcing Google’s Official Skills Repository&lt;/a&gt; — Google Cloud Blog, Megan O’Keefe, 22 April 2026&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/google/skills" rel="noopener noreferrer"&gt;github.com/google/skills&lt;/a&gt; — Official Google Agent Skills repository (13 skills at launch)&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://developers.googleblog.com/developers-guide-to-building-adk-agents-with-skills/?utm_campaign=deveco_gdemembers&amp;amp;utm_source=deveco" rel="noopener noreferrer"&gt;Developers guide to building ADK agents with skills&lt;/a&gt; — Google Developers Blog, April 2026&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/google/agents-cli" rel="noopener noreferrer"&gt;Agents CLI&lt;/a&gt; — ADK workflow skills for coding assistants&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://medium.sonikajanagill.com/the-skills-explosion-is-here-enterprise-governance-isnt-5a2cc152301b" rel="noopener noreferrer"&gt;The Skills Explosion Is Here. Enterprise Governance Isn’t.&lt;/a&gt; — Sonika Janagill, March 2026&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://developers.googleblog.com/bring-state-of-the-art-agentic-skills-to-the-edge-with-gemma-4/?utm_campaign=deveco_gdemembers&amp;amp;utm_source=deveco" rel="noopener noreferrer"&gt;Google AI Edge Gallery — Gemma 4 Agent Skills&lt;/a&gt; — Google Developers Blog, April 2026&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;Originally published at&lt;/em&gt; &lt;a href="https://sonikajanagill.com/articles/google-agent-skills-stack/" rel="noopener noreferrer"&gt;&lt;em&gt;https://sonikajanagill.com&lt;/em&gt;&lt;/a&gt;&lt;em&gt;.&lt;/em&gt;&lt;/p&gt;




</description>
      <category>googleadk</category>
      <category>googleagentplatform</category>
      <category>enterpriseaistrategy</category>
      <category>geminienterprise</category>
    </item>
    <item>
      <title>Google Cloud’s Agent Ops Stack: Why Deployment Is No Longer the Hard Part</title>
      <dc:creator>Sonika Janagill</dc:creator>
      <pubDate>Wed, 22 Apr 2026 22:58:00 +0000</pubDate>
      <link>https://dev.to/gde/google-clouds-agent-ops-stack-why-deployment-is-no-longer-the-hard-part-g3k</link>
      <guid>https://dev.to/gde/google-clouds-agent-ops-stack-why-deployment-is-no-longer-the-hard-part-g3k</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://dev.to/challenges/google-cloud-next-2026-04-22"&gt;Google Cloud NEXT Writing Challenge&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw8dabdky21iay6131wpi.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw8dabdky21iay6131wpi.png" alt="Google AgentOps" width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The Gemini Enterprise Agent Platform slide that opened &lt;a href="https://cloud.google.com/blog/topics/google-cloud-next/welcome-to-google-cloud-next26?utm_campaign=deveco_gdemembers&amp;amp;utm_source=deveco" rel="noopener noreferrer"&gt;Google Cloud Next'26&lt;/a&gt; has four layers: &lt;strong&gt;Build, Scale, Govern, Optimise.&lt;/strong&gt; Look at what is missing: Deploy.&lt;/p&gt;

&lt;p&gt;That omission is not an oversight. It is the point. Deploy has not disappeared. In the platform's lifecycle it is handled as an automated background step via &lt;a href="https://developers.googleblog.com/agents-cli-in-agent-platform-create-to-production-in-one-cli?utm_campaign=deveco_gdemembers&amp;amp;utm_source=deveco" rel="noopener noreferrer"&gt;Agent CLI&lt;/a&gt; and &lt;a href="https://docs.cloud.google.com/gemini-enterprise-agent-platform/build/runtime?utm_campaign=deveco_gdemembers&amp;amp;utm_source=deveco" rel="noopener noreferrer"&gt;Agent Runtime&lt;/a&gt;, part of Build and Scale. Google has made it a standardised process precisely so it stops being the primary engineering challenge. The hard questions are now upstream and downstream of it.&lt;/p&gt;

&lt;p&gt;A year ago, the conversation in every enterprise AI session was "how do we run an agent?" Today, Thomas Kurian opened the Next '26 keynote by declaring the agentic enterprise "real — and deployed at a scale the world has never before seen," and announcing a platform designed to answer an entirely different question: how do we govern a fleet of thousands of them?&lt;/p&gt;

&lt;p&gt;That shift, from deployment to governance, from experiment to operations, is what it actually means for agents to become first-class citizens on Google Cloud. It is a change in the platform's fundamental assumptions. We are leaving the era of the Request/Response cycle and entering the era of the Long-Lived Agentic Session. Infrastructure built for humans processing HTTP requests is being rebuilt for agents processing week-long workflows, with identity, memory, security, and observability treated as primitives rather than afterthoughts.&lt;/p&gt;

&lt;p&gt;Here is what that looks like in practice.&lt;/p&gt;




&lt;h2&gt;
  
  
  From Vertex AI to an agent operations platform
&lt;/h2&gt;

&lt;p&gt;The Gemini Enterprise Agent Platform is not a rebrand of Vertex AI. It is the evolution of it, and the distinction matters. Vertex AI gave engineers a trusted surface to build and tune models. The Agent Platform gives engineering teams a surface to manage agents as operational entities.&lt;/p&gt;

&lt;p&gt;For the past two years, the industry has been consumed by the Dev Stack for agents: which LLM to use, how to write the perfect prompt, which RAG framework to pick. Google's announcement effectively says: the Dev Stack is largely solved. Let's talk about the Ops Stack.&lt;/p&gt;

&lt;p&gt;The four pillars — Build, Scale, Govern, Optimise — are worth reading in the order Google chose, because that order tells you where the work is.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fh34dm1a25f3kj19af4xy.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fh34dm1a25f3kj19af4xy.jpg" alt="The four pillars of the Gemini Enterprise Agent Platform" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Build&lt;/strong&gt; covers what most developers already expect: a graph-based Agent Development Kit (ADK) supporting Python, TypeScript, Java, and Go; a low-code &lt;a href="https://docs.cloud.google.com/gemini-enterprise-agent-platform/agent-studio/overview?utm_campaign=deveco_gdemembers&amp;amp;utm_source=deveco" rel="noopener noreferrer"&gt;Agent Studio&lt;/a&gt;; &lt;a href="https://docs.cloud.google.com/gemini-enterprise-agent-platform/build/agent-garden?utm_campaign=deveco_gdemembers&amp;amp;utm_source=deveco" rel="noopener noreferrer"&gt;Agent Garden&lt;/a&gt; templates; and &lt;a href="https://docs.cloud.google.com/architecture/agentic-ai-bidirectional-multimodal-streaming?utm_campaign=deveco_gdemembers&amp;amp;utm_source=deveco" rel="noopener noreferrer"&gt;multimodal streaming&lt;/a&gt;. Google reports that over six trillion tokens are processed monthly through ADK alone. The model backbone for this platform is the Gemini 3 family: Gemini 3 Pro for complex workflow orchestration, Gemini 3 Flash for the high-frequency, lower-latency tasks that agent loops demand. The tooling here is mature. The interesting announcements are in the next three layers.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Scale&lt;/strong&gt; is where the runtime gets serious. Agent Runtime now delivers sub-second cold starts. Long-running agents can maintain state for up to seven days. Agent Sandbox provides hardened execution environments for model-generated code and computer-use tasks. The key addition is &lt;strong&gt;Memory Bank with Memory Profiles&lt;/strong&gt;: agents can now retain long-term, high-accuracy context across sessions, mapped to internal CRM and database records via Custom Session IDs. Stateful agents are not an edge case anymore; they are the runtime's default assumption.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Govern&lt;/strong&gt; is the layer that signals the platform shift most clearly. Three new capabilities: &lt;strong&gt;Agent Identity&lt;/strong&gt;, &lt;strong&gt;Agent Registry&lt;/strong&gt;, and &lt;strong&gt;Agent Gateway&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Think of Agent Identity, Agent Registry, and Agent Gateway together as Active Directory for the AI era: the system that manages who your non-human workforce is, what it can access, and what it did. Agent Identity gives every agent a unique cryptographic ID with an auditable trail mapped to authorisation policies. If an agent takes an action, you know which agent, under which policy, at what time. This is not prompt engineering; it is IAM for non-human principals.&lt;/p&gt;

&lt;p&gt;Agent Registry is a central catalogue of every agent and approved tool across your organisation — the equivalent of a container registry, but for agents. Whether the agent was built internally on ADK or sourced from the partner marketplace (Atlassian, Box, Salesforce, ServiceNow, Workday all launched agents at Next), it has one identity and one index.&lt;/p&gt;

&lt;p&gt;Agent Gateway is described by Kurian as "air traffic control for your agent ecosystem." It routes all agent traffic, speaks both MCP and A2A natively, and applies &lt;strong&gt;Model Armor&lt;/strong&gt; inline: prompt injection scanning and tool poisoning detection happen at the network layer before any agent action executes. Critically, it also surfaces &lt;strong&gt;Agent Anomaly Detection&lt;/strong&gt;, monitoring for tool misuse, unauthorised data access, and reasoning drift in production.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fofu9hatf8xksig5uvhcp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fofu9hatf8xksig5uvhcp.png" alt="The Govern layer: Agent Identity, Registry, and Gateway" width="800" height="391"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Optimise&lt;/strong&gt; closes the loop with Agent Simulation (generate thousands of synthetic interactions to surface edge cases before your users do), Agent Evaluation (multi-turn autoraters scoring live traffic), and OTel-compliant Agent Observability: automatic tracing, Agent Topology visualisation (a live map of how your agents interact with one another and with tools), and turn-key dashboards that surface the full reasoning chain behind every agent decision. If an agent chose the wrong tool or misread a user's intent, you can see exactly which step in the chain caused it — not just that something went wrong, but why. These are the SRE tools for agent fleets.&lt;/p&gt;

&lt;p&gt;Taken together, this is not a developer stack. It is an ops stack.&lt;/p&gt;




&lt;h2&gt;
  
  
  Five platform changes that make agents genuinely first-class
&lt;/h2&gt;

&lt;p&gt;It is easy to claim that agents are "first-class." The evidence is in whether the platform treats them as principals with rights and identities, not just processes with permissions.&lt;/p&gt;

&lt;p&gt;On that test, five concrete things changed today.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjw7u5a6meoyrpxgiz92m.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjw7u5a6meoyrpxgiz92m.png" alt="Five platform changes that make agents first-class citizens" width="800" height="360"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;First, agents now have cryptographic identities.&lt;/strong&gt; Agent Identity means IAM, audit, and compliance can treat an agent as a principal rather than an extension of a human user. When an agent in your supply chain pipeline calls a Spanner instance or reads from BigQuery, that action is traceable to a specific agent with a specific policy scope. That is a meaningful governance primitive, not a feature flag.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Second, they route through a dedicated control plane.&lt;/strong&gt; Agent Gateway is effectively an API gateway for agent traffic. Architecturally, this mirrors what happened when enterprises standardised on API gateways a decade ago: a chokepoint that enforces policy, provides observability, and decouples caller from callee. The fact that it speaks MCP and A2A natively means the gateway understands agent semantics, not just HTTP verbs. A Google Cloud engineering post published this month makes the underlying technical case: in agentic protocols, policy attributes live inside message bodies rather than headers, so any governance layer that does not parse MCP and A2A payloads is operating blind. &lt;a href="https://cloud.google.com/blog/products/networking/the-case-for-envoy-networking-in-the-agentic-ai-era?utm_campaign=deveco_gdemembers&amp;amp;utm_source=deveco" rel="noopener noreferrer"&gt;Envoy&lt;/a&gt;, the proxy underpinning Agent Gateway, is built precisely for this.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Third, they have persistent managed memory.&lt;/strong&gt; Memory Bank and Memory Profiles are now managed infrastructure, not application state you build yourself. The Gurunavi case study at Next described eliminating manual searches entirely by having agents recall past preferences across sessions. Payhawk's Financial Controller Agent reduced expense submission time by over 50% by remembering user-specific constraints. Stateful behaviour is no longer something you bolt on; it is something the platform provides.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Fourth, they have dedicated runtime economics.&lt;/strong&gt; Sub-second cold starts and 300 sandboxes per second on GKE reflect a runtime optimised for agent workload patterns: bursty, parallel, potentially long-running, and needing isolation. The TPU 8i chip (Zebrafish), announced separately today, goes further: designed explicitly for the low-latency, chain-of-thought MoE inference that agent reasoning demands, with roughly 80% better performance-per-dollar than Ironwood on that workload.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Fifth, they have a dedicated observability and evaluation stack.&lt;/strong&gt; OTel-compliant traces, simulation, and live autorater evaluation give engineers the same observability primitives for agents that SRE tooling gave them for services. You can now run a stress test against your agent fleet before deploying to production, score live traffic, and trace a failed reasoning chain end-to-end. That is the maturity signal.&lt;/p&gt;




&lt;h2&gt;
  
  
  What this means if you are building today
&lt;/h2&gt;

&lt;p&gt;The most immediate implication: the boundary between model development and agent operations has moved. A year ago, you deployed a model and called it via an API. Today, you deploy an agent with an identity, a memory profile, a registered set of approved tools, and a gateway policy. The deployment step is the beginning of the operational lifecycle, not the end of the development one.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;The deployment step is the beginning of the operational lifecycle, not the end of the development one.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The architectural mental model shift is significant: stop thinking about agents as wrappers around LLM APIs and start thinking about them as microservices — discrete, composable, independently deployable, and governed by the same infrastructure controls as the rest of your stack. ADK is the framework that makes that model practical.&lt;/p&gt;

&lt;p&gt;For engineering leads, the Agent Registry changes the conversation about shadow AI. If every agent your organisation uses — internal or sourced from a partner marketplace — needs to be registered and assigned an identity, you have a forcing function for agent governance that does not depend on policy documentation or developer discipline. The infrastructure enforces it.&lt;/p&gt;

&lt;p&gt;For platform teams, Agent Gateway as an MCP-and-A2A-aware control plane means you can start enforcing tool-level access control at the network layer. Restricting which tools a customer-facing commerce agent can call is now an infrastructure configuration, not a prompt constraint.&lt;/p&gt;




&lt;h2&gt;
  
  
  The commerce signal
&lt;/h2&gt;

&lt;p&gt;One customer story from the keynote is worth isolating for what it signals about the direction.&lt;/p&gt;

&lt;p&gt;Macy's unveiled "Ask Macy's," a Gemini-powered shopping agent built in &lt;strong&gt;four weeks&lt;/strong&gt; using Gemini Enterprise for Customer Experience. Reliance demonstrated an agent planning a birthday party, processing millions of product images in minutes via Gemini catalogue enrichment. PayPal's Principal Engineer specifically called out Memory Bank and AP2 (Agent Payments Protocol) as the foundation enabling trusted, agentic commerce experiences on their platform.&lt;/p&gt;

&lt;p&gt;The pattern across all three is the same: agents handling not just product discovery but multi-step, stateful, transactional workflows. An agent that can remember what you bought last month, understand your current budget, recommend products, and initiate a UCP checkout — that requires identity, memory, a governed tool set, and a payment layer that can verify authorisation cryptographically.&lt;/p&gt;

&lt;p&gt;The Gemini Enterprise Agent Platform, announced today, provides the first three. AP2, which Google announced earlier this year and reaffirmed today via the PayPal integration, provides the fourth.&lt;/p&gt;

&lt;p&gt;Commerce is not just a use case for this platform. It is the stress test. If agents can handle a stateful, multi-party, financially consequential transaction with full auditability, they can handle most enterprise workflows.&lt;/p&gt;




&lt;h2&gt;
  
  
  What comes next
&lt;/h2&gt;

&lt;p&gt;If you are building agents on Google Cloud today, the practical advice is simple: register them in Agent Registry, assign them identities, route them through Agent Gateway, and instrument them with OTel traces. The platform now supports that workflow end-to-end. The question is not whether to govern your agents. At this point, the infrastructure assumes you will.&lt;/p&gt;

&lt;p&gt;Tomorrow's developer keynote may add further detail on tool-level governance and Cloud Run specifics for long-running agent workloads. I will update as confirmed.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Sources:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://cloud.google.com/blog/topics/google-cloud-next/welcome-to-google-cloud-next26" rel="noopener noreferrer"&gt;Google Next 2026 keynote&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://cloud.google.com/blog/products/ai-machine-learning/introducing-gemini-enterprise-agent-platform?utm_campaign=deveco_gdemembers&amp;amp;utm_source=deveco" rel="noopener noreferrer"&gt;Gemini Enterprise Agent Platform product blog&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Video overview: &lt;a href="https://www.youtube.com/live/j8qW5poBkEU?utm_campaign=deveco_gdemembers&amp;amp;utm_source=deveco" rel="noopener noreferrer"&gt;What is Gemini Enterprise Agent Platform?&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://cloud.google.com/blog/products/networking/the-case-for-envoy-networking-in-the-agentic-ai-era?utm_campaign=deveco_gdemembers&amp;amp;utm_source=deveco" rel="noopener noreferrer"&gt;Envoy as agentic AI networking foundation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>devchallenge</category>
      <category>cloudnextchallenge</category>
      <category>googlecloud</category>
      <category>vertexai</category>
    </item>
  </channel>
</rss>
