Is Agent Plugins the End of AI Agent Fragmentation?

Skills + MCP in one folder · plugin.json · security left out · six-step runbook

Agent Plugins open standard for AI agent skills and MCP servers

On August 6, 2026, OpenAI, Vercel, Microsoft, Amazon, and Cursor's maker Anysphere jointly published Agent Plugins 1.0.0: a vendor-neutral package format that lets a single AI agent extension — bundling Agent Skills and MCP servers — run across ChatGPT, Cursor, GitHub Copilot, VS Code, and Kiro without a rewrite. Google joined the steering committee the same day. If you ship extensions across clients — or worry what a thin packaging standard leaves out — this piece gives you a timeline, fact table, predecessor comparison, six-step runbook, and the security fight the launch materials mostly skipped. As of 2026-08-07

01

What actually happened — and why packaging became the bottleneck

Every agent client currently expects a different folder layout for extensions. Agent Plugins does not invent a new capability — it standardizes the container. The launch settles almost nothing about security or trust; those questions were deliberately left out of scope.

  1. 01

    March 2023: OpenAI launches ChatGPT Plugins, an early open third-party extension model.

  2. 02

    January 2024: OpenAI shuts down Plugins in favor of the closed GPTs Store.

  3. 03

    November 2024: Anthropic releases MCP to standardize how agents connect to external tools and data; later donated to the Linux Foundation.

  4. 04

    March 2025: OpenAI and Google both adopt MCP, cementing it as the de facto tool-connection layer.

  5. 05

    October 16, 2025: Anthropic launches Agent Skills inside Claude Code as SKILL.md folders; December 18 they spin out at agentskills.io; Microsoft and OpenAI ship support within 48 hours.

  6. 06

    2026: March — Skills adoption crosses 32 tools; July 24 — Agent Plugins 1.0.0 as a working draft; August 6 — public launch with a five-company steering committee; Google joins as a core maintainer the same day.

Cross-client extension work still hits the same five frictions:

  1. 01

    Skills teach, packaging does not travel: Agent Skills solve reusable procedures; each client still invents its own discovery layout.

  2. 02

    MCP connects, configs stay sticky: Tool wiring works, but configs are often locked to one IDE or agent product.

  3. 03

    Build once, package N times: The same extension needed separate packaging for ChatGPT, Cursor, Copilot, and VS Code.

  4. 04

    Narrow scope ≠ low risk: Install, sandbox, and provenance stay client-owned — the hard safety questions are explicit omissions.

  5. 05

    Fake skills already shipped: One month before launch, AIR demoed a malicious Agent Skill that bypassed major scanners; Snyk found flaws in 36.8% of nearly 4,000 published skills.

02

Key facts and how Agent Plugins compares to its predecessors

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

Source: Vercel blog, agent-plugins.org specification, Google Developers Blog — all published August 6, 2026.

ChatGPT Plugins vs MCP vs Agent Skills vs Agent Plugins

StandardBacked byProblem it solvesStatus today
ChatGPT Plugins (2023)OpenAI onlyLet third parties add ChatGPT functionalityDiscontinued 2024, replaced by the closed GPTs Store
MCP (2024)Anthropic, later Linux FoundationProtocol for agents to call external tools/dataDe facto industry standard; adopted by OpenAI, Google
Agent Skills (2025)Anthropic, spun out as open standardPackaging reusable instructions/workflows for agents32+ tools support it, still expanding
Agent Plugins (2026)Vercel + 5-company steering committeeUnified packaging/discovery for Skills + MCP serversJust launched as 1.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 how agents call tools or learn procedures.

03

Six-step runbook: ship Skills and MCP in one Agent Plugin

A plugin is a directory with a plugin.json manifest at its root. Skills live in skills/ and must conform to Agent Skills. MCP servers are declared in mcp.json, supporting stdio, Streamable HTTP, or legacy HTTP+SSE. Use this runbook from inventory to distribution:

  1. 01

    Inventory what you already ship: List Agent Skills and MCP servers that need to run on ChatGPT, Cursor, Copilot, or VS Code without a rewrite.

  2. 02

    Normalize Skills first: Ensure each skill folder has a compliant SKILL.md and frontmatter. Unknown or invalid components are skipped — the whole plugin is not rejected.

  3. 03

    Add the root manifest: Create plugin.json declaring which Agent Plugins spec version the package targets.

  4. 04

    Declare MCP servers: Put transports and endpoints in mcp.json, matching what your target clients actually support.

  5. 05

    Isolate client-private extras: Use reverse-domain namespaces (for example com.cursor.xxx/) so proprietary bits do not leak into the portable core.

  6. 06

    Security review before distribute: The spec defines no install, sandbox, or provenance checks. Prefer official marketplaces, verify source, and never trust star counts alone.

directory
my-agent-plugin/
├── plugin.json
├── mcp.json
└── skills/
    └── example-skill/
        └── SKILL.md

Note: At launch: ChatGPT, Codex, Cursor, GitHub Copilot, Kiro, and VS Code. Google committed support across Antigravity, Gemini CLI, and its Data Agent Kit, represented on the TSC by DeepMind engineer Kevin Hou.

04

Why the design is deliberately narrow — and what that leaves unresolved

It standardizes the container, not the contents

The manifest declares which spec version a package targets; components live in fixed, predictable locations. A client that does not recognize a component type simply skips it rather than rejecting the whole plugin — keeping the format forward-compatible as new component types get added later.

It explicitly punts on the hard parts

The spec text is blunt: v1 defines no install mechanism, no distribution protocol, no permission model, no sandboxing requirements, no trust or provenance verification, and no user experience. Google's own announcement calls these deliberate omissions. A narrow scope is what let five competing companies agree in months. The tradeoff: whether a specific plugin is safe to run is pushed entirely onto each client.

Timing tracks adoption pressure, not marketing

Agent Skills alone had already spread to 32+ tools within five months of going open. At that scale, every client re-solving packaging independently stops being a minor inefficiency and starts being real duplicated engineering cost.

Security timing is uncomfortable: One month before launch, AIR demonstrated a fake Agent Skill called 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 — some on corporate accounts — via a classic TOCTOU gap. Separately, Snyk's audit of nearly 4,000 published skills found security flaws in 36.8%, with 13.4% containing critical-severity issues. Agent Plugins contains zero provisions for provenance verification or runtime attestation.

  • Thin-standard skepticism: SST author Dax Raad said he was "very much against" it, calling it a thin standard whose useful parts will reappear as client-specific extensions. Developer advocate Angie Jones welcomed one way to carry skills between tools.
  • Who a shared format favors: Small developers gain "build once, reach every major client." Incumbents with existing user bases may absorb third-party extensions at zero switching cost, reinforcing rather than disrupting the ChatGPT / Cursor / Copilot leaderboard.
  • Gap English coverage mostly missed: All five founding TSC members plus Google are U.S. companies. Alibaba Cloud's Model Studio and Baidu's Qianfan already ship MCP marketplaces; domestic coverage shows Alibaba, Baidu, ByteDance, and Tencent treat MCP as core agent infrastructure — none appear on the Agent Plugins governance list.
  • Anthropic's absence: Public announcements do not list Anthropic among founding maintainers, despite Agent Skills originating there. Anthropic had not issued a public statement on Agent Plugins as of this writing.
05

Why it matters beyond the spec — hard numbers and a practical close

  • Anniversary timing: GPT-5 turned one 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.
  • Three-layer stack: MCP solves connection; Agent Skills solve teaching; Agent Plugins solve distribution — together they make "build a reusable agent capability once" practical rather than a slogan.
  • 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."
  • Adoption pressure: 32+ tools already support Agent Skills — the real argument for standardizing packaging now.
  • Supply-chain data still applies: AIR's ~26,000-agent reach and Snyk's 36.8% / 13.4% findings are not reduced by a shared folder layout alone.

Competitive energy in AI is shifting from model benchmarks toward the unglamorous plumbing underneath them.

A shared package format lowers distribution friction, but install trust, sandboxing, and 24/7 agent-host stability stay outside the spec. Laptops are a poor always-on host for multi-client agent stacks; VMs add performance loss and licensing risk. For a more stable production environment suited to iOS CI/CD and AI agent automation, VpsMesh Mac Mini cloud rental is usually the better fit: physical Apple Silicon, root access, and predictable monthly cost that pairs with Cursor, Codex, or Claude Code as a "standard plugin package + always-on host" setup. See Mac Mini M4 rental pricing and the help center.

Sources: Vercel "Introducing Agent Plugins" and Changelog; agent-plugins.org Spec 1.0.0; Google Developers Blog; The Next Web / Virtualization Review; Anthropic Agent Skills updates; AIR / Snyk ToxicSkills / Help Net Security; 36Kr and Alibaba Cloud developer coverage of MCP in China; OpenAI GPT-5.6 Sol blog and TechCrunch. Compiled as of 2026-08-07 — verify latest details before publishing.

FAQ

FAQ

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 are shipped.

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.

Not automatically. The specification explicitly does not define trust, provenance, or sandboxing — that is left entirely to whichever client you are 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 would treat an unfamiliar npm package. For always-on agent hosts, see Mac Mini M4 rental pricing.

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 had not shipped it at announcement time.

The public announcements from Vercel, Google, and the specification site do not 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 has not issued a public statement on Agent Plugins as of this writing. Deployment notes: help center.