What Actually Happened
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. The initial Technical Steering Committee lists Amazon, Cursor, Microsoft, OpenAI, and Vercel as core maintainers. Google added itself to that group on launch day, represented by DeepMind engineer Kevin Hou, and confirmed it's building support into Antigravity, Gemini CLI, and its Data Agent Kit.
Timeline: This Didn't Come Out of Nowhere
Agent Plugins is the third layer in an 18-month stack, not a standalone invention:
| Date | Milestone |
|---|---|
| March 2023 | OpenAI launches ChatGPT Plugins, an early open third-party extension model |
| January 2024 | OpenAI shuts down Plugins in favor of the closed GPTs Store |
| November 2024 | Anthropic releases MCP (Model Context Protocol); later donated to the Linux Foundation |
| March 2025 | OpenAI and Google both adopt MCP, cementing it as the de facto tool-connection layer |
| October 16, 2025 | Anthropic launches Agent Skills inside Claude Code as SKILL.md folders |
| December 18, 2025 | Agent Skills spins out as an open standard at agentskills.io; Microsoft and OpenAI ship support within 48 hours |
| March 2026 | Agent Skills adoption crosses 32 tools, including Gemini CLI, JetBrains Junie, and AWS Kiro |
| July 24, 2026 | Agent Plugins 1.0.0 published as a working draft |
| August 6, 2026 | Public launch with a five-company steering committee; Google joins as a core maintainer the same day |
The pattern: 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.
Key Facts at a Glance
| 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 manifest; skills/ directory; mcp.json for MCP server config |
| Clients supporting it 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.
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, 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.
It explicitly punts on the hard parts
The spec text is blunt about this: 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, not silent gaps. 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.
The 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 the same packaging problem independently stops being a minor inefficiency and starts being real duplicated engineering cost — which is the actual argument for standardizing now rather than earlier.
Run Agent Skills and MCP on real macOS
After the package format settles, teams still need dedicated Apple Silicon nodes to validate plugins, CI, and local toolchains. See RUVCLOUD use cases and pricing.
How Agent Plugins Compares to What Came Before
| 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 + 5-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.
The Unresolved Fight: Security, Skepticism, and Who Actually Benefits
- Security was left on the table on purpose — and the timing is uncomfortable. One month before Agent Plugins launched, security firm AIR publicly demonstrated a fake Agent Skill called
brand-landingpagethat borrowed credibility from an existing 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: the skill pointed to legitimate documentation during the scan, then the link was swapped afterward. 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 like credential exposure or malicious code. Agent Plugins' specification contains zero provisions for provenance verification or runtime attestation. - Not every developer is convinced the standard is worth much. Dax Raad, who builds the SST developer-tools framework, said he was "very much against" it, calling it "a thin standard" whose genuinely useful parts will end up re-implemented as client-specific extensions anyway. Developer advocate Angie Jones took the opposite view, saying she'd wanted exactly this: one way to carry the skills she'd already built between the different tools she uses day to day.
- A shared format doesn't obviously favor small players. The open-ecosystem pitch is that a small developer can now build once and reach every major client at once. But a standardized package format doesn't change where users already are — it may just make it easier for incumbent clients with existing user bases to absorb third-party extensions at zero switching cost.
- A governance gap English-language coverage has mostly missed: all five founding steering committee members — Vercel, OpenAI, Microsoft, Amazon, and Anysphere — plus Google, which joined on launch day, are U.S. companies. That matters because MCP is already widely deployed on major regional AI platforms that ship dedicated MCP marketplaces and treat MCP as core agent infrastructure. None of those platforms appear on the Agent Plugins governance list. Whether that's simply a timing gap — the spec is days old — or an early signal of a second protocol layer developing in parallel across regions is a question nobody in the initial announcements has addressed directly.
Why It Matters Beyond the Spec Itself
The launch date is not incidental. 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 own framing in its developer blog is telling: "Packaging is unglamorous infrastructure, and unglamorous infrastructure is exactly the kind of thing that should be shared rather than reinvented five times." Read together with MCP (solves connection) and Agent Skills (solves teaching), Agent Plugins (solves distribution) completes a three-layer stack that the industry needed before "build a reusable agent capability once" could become a practical reality.
For teams validating Skills, MCP servers, and local toolchains on real macOS — not a VM — dedicated physical Apple Silicon nodes with full Root/sudo, SSH, and VNC often land faster than building a private rack. Start from the RUVCLOUD order page with day-based rental.
Further reading
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.
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.