Why packaging friction still burns teams that already use MCP

Agent extensibility is not a new problem. For teams shipping the same capability into Cursor, ChatGPT, and Copilot, the pain is concrete:

  • Every client wants a different folder layout: where skills live, how MCP is declared, what the manifest is called — one capability becomes five packages.
  • Protocol layer unified, packaging layer did not: MCP solved connection; Agent Skills solved reusable teaching; discovery and shipping still fragmented.
  • Standards do not equal safety: a month before launch, a fake skill bypassed multiple marketplace scanners. A packaging format that omits trust checks pushes risk onto every client.
  • US steering ≠ global coverage: Chinese platforms already run MCP marketplaces, yet none sit on this TSC — parallel protocol layers are a real possibility.
  • Same week as model pricing moves: OpenAI also shipped GPT-5.6 Luna / Sol updates — competition is shifting from leaderboards toward plumbing.

What actually happened

Every agent client currently expects a different folder layout for extensions. Agent Plugins does not invent a new capability — it standardizes the container. A plugin is a directory with a plugin.json manifest at its root. Skills live in skills/ and must conform to Agent Skills (SKILL.md). MCP servers are declared in mcp.json, supporting stdio, Streamable HTTP, or legacy HTTP+SSE. A reverse-domain namespace is reserved for client-specific extras that stay out of the portable core.

Vercel initiated the proposal. The initial Technical Steering Committee lists Amazon, Cursor, Microsoft, OpenAI, and Vercel. Google joined as a core maintainer on launch day, represented by DeepMind engineer Kevin Hou, and confirmed it is building support into Antigravity, Gemini CLI, and its Data Agent Kit.

Timeline: this did not come out of nowhere

Date Milestone
March 2023OpenAI launches ChatGPT Plugins
January 2024OpenAI shuts down Plugins in favor of the closed GPTs Store
November 2024Anthropic releases MCP; later donated to the Linux Foundation
March 2025OpenAI and Google adopt MCP
October 16, 2025Anthropic launches Agent Skills in Claude Code (SKILL.md)
December 18, 2025Agent Skills becomes an open standard at agentskills.io; Microsoft and OpenAI follow within 48 hours
March 2026Agent Skills adoption crosses 32 tools, including Gemini CLI, JetBrains Junie, and AWS Kiro
July 24, 2026Agent Plugins 1.0.0 published as a working draft
August 6, 2026Public launch with a five-company steering committee; Google joins the same day

MCP solved connecting. Agent Skills solved teaching. Neither solved how those two component types get packaged and discovered consistently — that gap is what Agent Plugins targets.

Key facts at a glance

Item Detail
Spec versionAgent Plugins 1.0.0 (Working Draft)
Proposal initiatorVercel
Steering committeeAmazon (AWS), Anysphere/Cursor, Microsoft, OpenAI, Vercel; Google added Aug 6, 2026
Component typesExactly two: Agent Skills, MCP servers
Core filesRoot plugin.json; skills/ directory; mcp.json
Clients at launchChatGPT and Codex, Cursor, GitHub Copilot, Kiro, VS Code
GovernanceOpen license, public GitHub repo (agentplugins/agent-plugins-spec)
Explicitly out of scopeInstallation, distribution/marketplaces, permission models, sandboxing, trust/provenance, UX

Source: Vercel blog, agent-plugins.org specification, Google Developers Blog — all published August 6, 2026. Spec and client support can change; verify against the official links.

Why the design is deliberately narrow

It standardizes the container, not the contents. The manifest declares which spec version a package targets; components live in fixed locations. A client that does not recognize a component type skips it rather than rejecting the whole plugin.

It explicitly punts on the hard parts. v1 defines no install mechanism, no distribution protocol, no permission model, no sandboxing, no trust or provenance verification, and no UX. Google's announcement calls these deliberate omissions. Narrow scope is what let five competitors agree in months. The tradeoff: "is this plugin safe?" is entirely each client's problem.

Timing tracks adoption pressure. Agent Skills had already spread to 32+ tools within months of going open. At that scale, every client re-solving packaging independently becomes real duplicated engineering cost.

plugin.json (illustrative)
{
  "name": "example-agent-plugin",
  "version": "1.0.0",
  "agentPlugins": "1.0.0"
}

How Agent Plugins compares to what came before

Standard Backed by Problem it solves Status today
ChatGPT Plugins (2023)OpenAI onlyThird-party ChatGPT functionalityDiscontinued 2024; replaced by closed GPTs Store
MCP (2024)Anthropic, later Linux FoundationProtocol for agents to call tools/dataDe facto industry standard
Agent Skills (2025)Anthropic, spun out as open standardReusable instructions/workflows32+ tools support it
Agent Plugins (2026)Vercel + five-company TSCUnified packaging/discovery for Skills + MCP1.0 working draft; Google already onboard

Agent Plugins is not competing with MCP or Agent Skills — it sits on top of both, solving distribution friction rather than redefining runtime behavior.

The unresolved fight: security, skepticism, and who benefits

  • Security was left on the table on purpose. One month before launch, security firm AIR demonstrated a fake Agent Skill named brand-landingpage that borrowed credibility from a ~36,000-star repository, passed scanning at Cisco, Nvidia, and skills.sh, and reached an estimated 26,000 deployed agents via a TOCTOU gap. Separately, Snyk's audit of nearly 4,000 published skills found flaws in 36.8%, with 13.4% containing critical issues. Agent Plugins ships zero provenance provisions.
  • Not every developer is convinced. SST's Dax Raad called it "a thin standard" whose useful parts will become private extensions. Developer advocate Angie Jones welcomed a way to carry skills between tools without rewriting.
  • A shared format does not obviously favor small players. Build-once-reach-everywhere is the pitch; incumbents with existing user bases may absorb third-party extensions at zero switching cost and reinforce the current leaderboard.
  • No Chinese company is at the table. All five founding TSC members plus Google are U.S. companies. Alibaba Cloud's Model Studio and Baidu's Qianfan already ship MCP marketplaces; Alibaba, Baidu, ByteDance, and Tencent treat MCP as core agent infrastructure. None appear on the Agent Plugins governance list — timing gap or early signal of a parallel protocol layer.

Why it matters beyond the spec itself

GPT-5 turned one year old on August 7, 2026. OpenAI used the preceding week to ship GPT-5.6 Luna (unlimited free-tier text chats) and GPT-5.6 Sol (a new "thinking effort" slider) alongside Agent Plugins. Google's framing: "Packaging is unglamorous infrastructure, and unglamorous infrastructure is exactly the kind of thing that should be shared rather than reinvented five times." Read with MCP (connection) and Agent Skills (teaching), Agent Plugins (distribution) completes a three-layer stack the industry needed before "build a reusable agent capability once" could become practical.

Evaluate Agent Plugins across clients: a 6-step checklist

You do not need to wait for a mature marketplace to form a view. Use these six steps to turn the launch into a reproducible decision.

  1. Read the out-of-scope list first: confirm v1 covers only Skills + MCP packaging — not install, markets, permissions, sandboxing, or trust.
  2. Inventory existing extensions: list current SKILL.md folders and MCP configs you already maintain separately for Cursor / Copilot / ChatGPT.
  3. Build a minimal plugin directory: root plugin.json, skills under skills/, MCP in mcp.json; start with a read-only tool only.
  4. Load the same package in two+ clients: at least Cursor and VS Code / Copilot (or ChatGPT); log discovery paths, skipped components, and private-namespace behavior.
  5. Minimize the attack surface: never install production plugins from unknown repos; prefer official channels and client-side scanners; default-deny skills that call home or read secrets.
  6. Run isolation tests on a wipeable Mac: parallel agent clients pollute local state fast. Use a dedicated Apple Silicon box for MCP/Skills smoke tests, then wipe — do not leave credentials on a shared CI host.
local shell · minimal skeleton
mkdir -p my-plugin/skills/hello
printf '%s\n' '{"name":"my-plugin","version":"0.1.0","agentPlugins":"1.0.0"}' > my-plugin/plugin.json
printf '%s\n' '---' 'name: hello' '---' '# Hello skill' > my-plugin/skills/hello/SKILL.md
printf '%s\n' '{"mcpServers":{}}' > my-plugin/mcp.json

Citable facts and sources

  • Launch: public 1.0 on August 6, 2026; working draft first on July 24, 2026.
  • Scope: only Agent Skills and MCP servers; core files plugin.json, skills/, mcp.json.
  • Day-one clients: ChatGPT and Codex, Cursor, GitHub Copilot, Kiro, VS Code.
  • Adoption pressure: Agent Skills crossed 32+ tools within months of opening.
  • Security context: AIR fake-skill demo (~26k agents); Snyk found issues in 36.8% of ~4,000 skills, 13.4% critical.

Spec and product support evolve quickly — verify against official links. Compiled as of August 7, 2026.

Official sources:

Vercel Blog — Introducing Agent Plugins

Vercel Changelog — Introducing Agent Plugins 1.0.0

agent-plugins.org — Agent Plugins Specification 1.0.0

Google Developers Blog — Agent Plugins package your skills, tools, and more

Third-party coverage:

The Next Web — OpenAI and four rivals agreed on one standard for AI agents

FAQ

Is Agent Plugins the same thing as MCP?

No. MCP is a protocol that defines how an agent talks to an external tool or data source at runtime. Agent Plugins is a packaging format that defines how you bundle an MCP server's configuration (along with Agent Skills) into one portable folder that different agent clients can discover. MCP and Agent Skills still define the actual behavior; Agent Plugins just standardizes how they're shipped.

Does Agent Plugins replace Agent Skills?

No — it depends on it. Any skill inside an Agent Plugins package must conform to the existing Agent Skills specification (SKILL.md format, frontmatter, directory layout). Agent Plugins adds a manifest and folder convention on top so that a skill (or an MCP server) can travel between clients without separate packaging for each one.

Is it safe to install a random Agent Plugin from a marketplace?

Not automatically. The specification explicitly does not define trust, provenance, or sandboxing — that's left entirely to whichever client you're using. Given that a fake Agent Skill bypassed Cisco, Nvidia, and skills.sh scanners and reached roughly 26,000 agents in a documented 2026 test, treat any third-party plugin the way you'd treat an unfamiliar npm package: check the source, don't trust star counts alone, and prefer official marketplaces with your client's own vetting layer on top.

Which AI tools support Agent Plugins right now?

At launch (August 6, 2026): ChatGPT, Codex, Cursor, GitHub Copilot, Kiro, and VS Code. Google has committed to adding support across Antigravity, Gemini CLI, and its Data Agent Kit, but hadn't shipped it at announcement time for every product in that list.

Why isn't Anthropic, which created Agent Skills, on the steering committee?

The public announcements from Vercel, Google, and the specification site don't list Anthropic among the founding maintainers, despite Agent Skills — one of the two component types Agent Plugins packages — originating at Anthropic. None of the launch materials explain the omission, and Anthropic hasn't issued a public statement on Agent Plugins as of this writing. It's worth watching whether Anthropic adopts the format for its own products going forward.

Agent Plugins unifies the shipping box for Skills and MCP, then leaves install, marketplace, and trust checks to each client — which means more cross-tool A/B work and more chances to pollute a daily driver. When you need a clean, rootable, wipeable Apple Silicon box for Cursor / VS Code / MCP smoke tests, a day-rate Mac mini on KVMFLUX is usually the lower-friction path: SSH in, run the checklist, wipe, and keep secrets off your laptop. For rent-vs-buy math, see whether Mac mini M4 rental is worth it.

Test Agent Plugins on a real Mac

Dedicated physical Mac mini M4 with root + SSH. Smoke-test Skills and MCP across clients without contaminating your laptop.

Mac Mini M4 · 16GB / 256GB
Daily$19.3 /day
Weekly$52.2 /wk
Monthly$96.7 /mo
Quarterly$263 /qtr