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. The launch lands one day before GPT-5's first anniversary, and it settles almost nothing about security or trust — those questions were deliberately left out of scope. Protocol context: MCP as AI-era HTTP. Skills packaging: Agent Skills / Cursor guide.
Bottom line: Agent Plugins standardizes the container, not trust. MCP solves connection, Skills solve teaching, Plugins solve distribution — three layers, not one replacement protocol.
The headline is clean. The decision surface is not:
Every agent client currently expects a different folder layout for extensions. A developer building a coding-assistant tool, a data connector, or a reusable workflow has had to package it once for Claude Code, again for Cursor, again for VS Code Copilot. Agent Plugins doesn't invent a new capability — it standardizes the container. A plugin is a directory with a plugin.json manifest at its root. If it ships skills, they live in a skills/ folder and must conform to the existing Agent Skills specification. If it ships MCP servers, they're declared in mcp.json, supporting stdio, Streamable HTTP, or legacy HTTP+SSE transports. Any compliant client can discover and load both from the same folder, with a reverse-domain namespace mechanism reserved for client-specific extras that don't leak into the portable core.
Vercel initiated the proposal; representatives from AWS, Anysphere (Cursor), GitHub, Microsoft, and OpenAI shaped the 1.0 spec together. Google added itself on launch day, represented by DeepMind engineer Kevin Hou, and confirmed it's building support into Antigravity, Gemini CLI, and its Data Agent Kit.
| Date | Milestone |
|---|---|
| Mar 2023 | OpenAI launches ChatGPT Plugins, an early open third-party extension model |
| Jan 2024 | OpenAI shuts down Plugins in favor of the closed GPTs Store |
| Nov 2024 | Anthropic releases MCP; later donated to the Linux Foundation |
| Mar 2025 | OpenAI and Google both adopt MCP |
| Oct 16, 2025 | Anthropic launches Agent Skills in Claude Code (SKILL.md) |
| Dec 18, 2025 | Agent Skills spins out at agentskills.io; Microsoft and OpenAI ship support within 48 hours |
| Mar 2026 | Agent Skills adoption crosses 32 tools (Gemini CLI, JetBrains Junie, AWS Kiro, and more) |
| Jul 24, 2026 | Agent Plugins 1.0.0 published as a working draft |
| Aug 6, 2026 | Public launch with a five-company steering committee; Google joins as a core maintainer the same day |
MCP solved connecting agents to tools. Agent Skills solved teaching agents reusable procedures. Neither solved how those two component types get packaged and discovered consistently across clients — that gap is what Agent Plugins targets.
| Item | Detail |
|---|---|
| Spec version | Agent Plugins 1.0.0 (status: Working Draft) |
| Proposal initiator | Vercel |
| Steering committee | Amazon (AWS), Anysphere/Cursor, Microsoft, OpenAI, Vercel; Google added Aug 6, 2026 |
| Component types covered | Exactly two: Agent Skills, MCP servers |
| Core files | Root plugin.json; skills/ directory; mcp.json for MCP server config |
| Clients at launch | ChatGPT and Codex, Cursor, GitHub Copilot, Kiro, VS Code |
| Governance | Open license, public GitHub repo (agentplugins/agent-plugins-spec); no single company controls the roadmap |
| Explicitly out of scope | Installation, distribution/marketplaces, permission models, sandboxing, trust/provenance verification, UX |
Source: Vercel blog, agent-plugins.org specification, Google Developers Blog — all published August 6, 2026.
The manifest declares which spec version a package targets; components live in fixed, predictable locations. A client that doesn't recognize a component type simply skips it rather than rejecting the whole plugin — a design choice that keeps the format forward-compatible as new component types get added later.
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." Those aren't oversights — Google's own announcement calls them out as deliberate omissions. A narrow scope is what let five competing companies agree on something in months rather than years. The tradeoff: the question that actually matters for safety — is this specific plugin safe to run — is pushed entirely onto each client.
Agent Skills alone had already spread to 32+ tools within five months of going open. At that scale, every client re-solving the same packaging problem independently stops being a minor inefficiency and starts being real duplicated engineering cost.
| Standard | Backed by | Problem it solves | Status today |
|---|---|---|---|
| ChatGPT Plugins (2023) | OpenAI only | Let third parties add ChatGPT functionality | Discontinued 2024; replaced by the closed GPTs Store |
| MCP (2024) | Anthropic, later Linux Foundation | Protocol for agents to call external tools/data | De facto industry standard; adopted by OpenAI, Google |
| Agent Skills (2025) | Anthropic, spun out as open standard | Packaging reusable instructions/workflows for agents | 32+ tools support it, still expanding |
| Agent Plugins (2026) | Vercel + five-company steering committee | Unified packaging/discovery for Skills + MCP servers | Just launched as 1.0 working draft; Google already onboard |
Agent Plugins isn't 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.
brand-landingpage that borrowed credibility from a repository with 36,000 GitHub stars, then passed scanning at every marketplace AIR tested — Cisco, Nvidia, and skills.sh included. It reached an estimated 26,000 deployed agents, some on corporate accounts, by exploiting a classic time-of-check/time-of-use gap. Separately, Snyk's audit of nearly 4,000 published skills found security flaws in 36.8% of them, with 13.4% containing critical-severity issues. Agent Plugins' specification contains zero provisions for provenance verification or runtime attestation.GPT-5 turned one year old on August 7, 2026, and 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 for paid tiers) alongside the Agent Plugins announcement. 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.
plugin.json → skills/ with valid SKILL.md → mcp.json for stdio or Streamable HTTP servers.my-agent-plugin/ ├── plugin.json # manifest: which spec version ├── skills/ # Agent Skills (SKILL.md) │ └── my-skill/ │ └── SKILL.md └── mcp.json # MCP server config (stdio / HTTP)
Agent Plugins lowers the cost of shipping one Skills+MCP bundle to many clients. It does not decide whether that bundle is safe, where it is hosted, or how you keep MCP servers online overnight.
Teams that run multi-client debugging, always-on MCP, and evolving skill repos still hit the same structural bottlenecks:
If you need to attach Agent Plugins packages, MCP servers, and skill repos to a production agent workflow, MACCOME Mac cloud hosts give you real macOS, SSH handoff, and isolation for always-on work. Public rates: Mac mini rental rates.
Sources: Vercel Blog, "Introducing Agent Plugins," and Vercel Changelog (August 6, 2026); agent-plugins.org Spec 1.0.0 (Working Draft); Google Developers Blog, "Agent Plugins package your skills, tools, and more" (August 6, 2026); The Next Web, Virtualization Review; Anthropic Agent Skills posts; AIR security research; Snyk ToxicSkills; Help Net Security; 36Kr and Alibaba Cloud Developer Community on MCP adoption in China; OpenAI "Improving GPT‑5.6 Sol in ChatGPT"; TechCrunch. Compiled as of August 7, 2026 — verify latest details before publishing.
FAQ
Is Agent Plugins the same thing as MCP?
No. MCP defines how an agent talks to an external tool or data source at runtime. Agent Plugins is a packaging format for bundling MCP server config (with Agent Skills) into one portable folder. More on the protocol layer: Why MCP looks like AI-era HTTP.
Does Agent Plugins replace Agent Skills?
No — it depends on it. Skills inside a package must still conform to the Agent Skills specification (SKILL.md, frontmatter, directory layout). Agent Plugins adds a manifest and folder convention so a skill or MCP server can travel between clients without separate packaging.
Is it safe to install a random Agent Plugin from a marketplace?
Not automatically. The specification explicitly does not define trust, provenance, or sandboxing. 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 third-party plugins like unfamiliar npm packages: verify the source, don't trust star counts alone, prefer official marketplaces.
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 Antigravity, Gemini CLI, and its Data Agent Kit, but hadn't shipped that support at announcement time.
Why isn't Anthropic, which created Agent Skills, on the steering committee?
Public announcements from Vercel, Google, and the specification site don't list Anthropic among founding maintainers. None of the launch materials explain the omission, and Anthropic hadn't issued a public statement on Agent Plugins as of this writing. If you need always-on agent hosting rather than governance gossip, see MACCOME Mac mini rental rates.