Engineering post from Google dated August 6, 2026 announcing that the company joins as Core Maintainer of the Agent Plugins 1.0.0 specification — an open, vendor-neutral packaging format for distributing Agent Skills and MCP servers together.

Governance first. The specification was published by a TSC of Core Maintainers from Amazon, Cursor, Microsoft, OpenAI, and Vercel. Google joins them, named specifically through Kevin Hou (Google DeepMind). Six competitors agree on a packaging layer. Anthropic does not appear on the maintainer list, even though the two packaged building blocks come from it.

Those skills were already distributable. Now they're distributable in a format that isn't ours alone.

Trois signataires , developers.googleblog.com

The diagnosis. A skill is portable, an MCP server is portable — « The core problem isn't the components. It's the manifest. » What has never been portable is the box: directory layout, manifest metadata, the shape of the MCP configuration, and transport inference differ from client to client. Teams fork, maintain two copies of identical components, and those copies drift.

The format. « A plugin is a directory. That's the whole idea, and the restraint is the point. » A plugin.json reduced to $schema and name; skills in skills/, in the Agent Skills format; servers in mcp.json, with an explicit type on each entry (stdio, Streamable HTTP, legacy HTTP+SSE). The strength of the design lies in what the manifest cannot do: neither relocate a component nor declare it inline. So there is no discovery path to configure, no precedence order to learn. Corollary: components fail independently — a server that fails to start does not take the skills down with it. A reverse-domain directory (com.example.client/) serves as a proprietary extension space, ignored by other clients: the portable core stays small because the non-portable parts have somewhere to go.

Limits, openly acknowledged. An entire section explains when not to make a plugin (a single MCP server, a single skill: unnecessary). Another lists what v1 excludes: installation, distribution, permissions, sandboxing, trust and provenance verification, UX. Justification: the obligations of an IDE, a CLI, and an enterprise platform genuinely differ.

The stack. Discover (Agentic Resource Discovery), describe (AI Catalog), package (Agent Plugins), execute (MCP + Agent Skills) — each layer independently adoptable.

Shipping today: Agents CLI (usable from Antigravity, Gemini CLI, Claude Code, or Cursor) and Data Agent Kit (BigQuery, Spanner, Cloud SQL). « Those skills were already distributable. Now they're distributable in a format that isn't ours alone. » Closing line: « Packaging is unglamorous infrastructure », and that is precisely what should be shared rather than reinvented five times.