Who / When: 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. This piece covers the timeline, key-facts table, design deep dive, comparisons, controversies, a six-step checklist, and FAQ.
Agent extensibility is not new, but packaging fragmentation has been expensive. Check these six traps before deciding what the standard actually solves — and what it deliberately ignores:
Calling it a "new protocol": Agent Plugins does not replace MCP or Agent Skills. It sits on top of both as a packaging and discovery contract — folder layout and manifests, not how agents call tools at runtime.
Assuming install and security are covered: v1 defines no install mechanism, distribution/marketplace, permission model, sandboxing, trust or provenance verification, or UX — all left to each client.
Ignoring that only two component types ship in v1: Exactly Agent Skills and MCP servers. Unknown component types should be skipped, not used as a reason to reject the whole plugin.
Treating it as an OpenAI-only product: Vercel initiated the proposal; the TSC lists Amazon, Anysphere (Cursor), Microsoft, OpenAI, and Vercel; Google joined as a core maintainer on launch day.
Using star counts as a security signal: One month before launch, AIR demoed a fake skill that bypassed multiple scanners; Snyk's audit of nearly 4,000 skills found flaws in 36.8%, with 13.4% critical-severity issues.
Assuming Chinese vendors are already at the table: Founding TSC members plus Google are all U.S. companies. Alibaba, Baidu, ByteDance, and Tencent already treat MCP as core infrastructure, yet none appear on the Agent Plugins governance list.
Verification note: This article is based on the Vercel blog, agent-plugins.org specification, and Google Developers Blog (all published August 6, 2026), plus public security reporting. The spec status is Working Draft — verify the latest docs before publishing or shipping against it.
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 does not 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 are 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 do not 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 is building support into Antigravity, Gemini CLI, and its Data Agent Kit.
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, packaging reusable instructions 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 |
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 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.
The technical design is deliberately small. A plugin is a directory; the root plugin.json declares which spec version the package targets. Skills live under a fixed skills/ path and must match the Agent Skills SKILL.md format; MCP server configuration goes in mcp.json, with stdio, Streamable HTTP, and related transports. Clients that recognize the layout can auto-discover and load components. Unknown component types or malformed entries are skipped rather than rejecting the whole plugin. Reverse-domain extension namespaces (for example com.cursor.xxx/) let clients attach private capabilities without polluting the portable core.
my-plugin/
├── plugin.json
├── skills/
│ └── summarize/
│ └── SKILL.md
├── mcp.json
└── com.example.client/
└── hooks/
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 are not oversights — Google's own announcement calls them out as deliberate omissions. A narrow scope is what let five competing companies agree in months rather than years. The tradeoff: whether a specific plugin is safe to run is pushed entirely onto each client.
MCP and Agent Skills each followed a path from vendor invention to open donation and industry follow-on. Agent Plugins was multi-company from day one. Agent Skills alone had already spread to 32+ tools within months of going open — at that scale, every client re-solving packaging independently stops being a minor inefficiency. For deeper background on the layers underneath, see our MCP protocol explainer and Agent Skills guide for Mac developers.
brand-landingpage reportedly reached ~26,000 agents; Snyk audit of nearly 4,000 skills: 36.8% with security flaws, 13.4% critical-severity| 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 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.
brand-landingpage that 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 (TOCTOU) 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 — it packages the exact same trust problem it inherited, unchanged.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 rather than a slogan — and it is a sign that competitive energy in AI is shifting from model benchmarks toward the unglamorous plumbing underneath them.
Inventory existing extensions: List the Skills (SKILL.md) and MCP server configs you already ship, and decide which ones deserve a portable package.
Lay out the directory to the spec: Root plugin.json, skills under skills/, MCP in mcp.json; validate against agent-plugins.org.
Smoke-test on 1–2 clients: Prioritize Cursor, VS Code / Copilot, or ChatGPT/Codex for discovery and load checks.
Treat security as a client problem: Install only from official marketplaces or verified sources; do not trust star counts alone; watch for TOCTOU-style link swaps.
Keep private capabilities in extension namespaces: Put client-specific extras in reverse-domain directories so they do not pollute the portable core.
Run Agent pipelines on stable compute: A standard package still needs a reliable machine to execute Skills and MCP tools; a dedicated remote Mac beats a shared laptop for 24/7 agents.
Related reading: For skill-package security in production, see ClawHub skill security and production whitelists.
Unified packaging lowers the friction of rewriting extensions for every client, but install trust, sandboxing, and permissions still vary by product. Shared CI nodes, laptop disconnects, and public-cloud queues still break Agent Skills and MCP toolchains in real delivery.
For teams that need stable SSH, dedicated Apple Silicon, and reproducible Agent / iOS CI environments, NodeMini Mac Mini cloud rental is usually the better fit: second-scale provisioning on real Mac hardware, so Cursor, CLI agents, and Skills/MCP pipelines share one always-on node. See Mac Mini rental rates and the help center.
Sources: Vercel Blog, "Introducing Agent Plugins," and Vercel Changelog (August 6, 2026); agent-plugins.org, Agent Plugins Specification 1.0.0 (Working Draft); Google Developers Blog, "Agent Plugins package your skills, tools, and more" (August 6, 2026); The Next Web, Virtualization Review coverage (August 6, 2026); Anthropic, "Introducing Agent Skills" and subsequent updates (October 16, 2025; December 18, 2025); AIR security research; Snyk "ToxicSkills" study; Help Net Security reporting on malicious Agent Skills; 36Kr and Alibaba Cloud Developer Community coverage of MCP adoption among Chinese AI platforms; OpenAI, "Improving GPT-5.6 Sol in ChatGPT"; TechCrunch coverage (August 6, 2026). Compiled as of August 7, 2026. Agent Plugins and related model updates are evolving quickly — verify the latest details before publishing.
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.
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'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.
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.
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. If you need a stable machine to run Skills, MCP servers, and Agent pipelines while the ecosystem settles, see Mac Mini rental rates and the help center.