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. For layer context, see our MCP deep dive and Cursor Agent Skills guide.
00What 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.
PainWhere cross-client packaging usually breaks
- One skill, many layouts: ChatGPT, Cursor, VS Code, and Copilot each expect different Skills/MCP paths; copy-paste errors are common.
- Treating packaging as security: Agent Plugins defines the box, not scanning, sandboxing, or provenance.
- Collapsing three layers: MCP connects, Skills teach, Agent Plugins distributes — mixing them misguides architecture choices.
- Trusting star counts: AIR's fake skill
brand-landingpageborrowed credibility from a 36,000-star repo and bypassed multiple scanners. - Ignoring private namespaces: Reverse-domain folders (e.g.
com.cursor.xxx/) hold non-portable extras that must stay separate from the shared core. - Host jitter wiping portability gains: Plugins may load everywhere, but MCP stdio and long-running Skills still fail on oversold VPS or flaky desk machines.
01Timeline: 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; later donated to the Linux Foundation |
| March 2025 | OpenAI and Google both adopt MCP |
| October 16, 2025 | Anthropic launches Agent Skills in Claude Code (SKILL.md) |
| December 18, 2025 | Agent Skills spins out at agentskills.io; Microsoft and OpenAI follow 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. If you are still building MCP servers from scratch, see our MCP Server developer guide.
02Key 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 |
03Why 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.
04How 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.
05The unresolved fight: security, skepticism, and who 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. 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. Developer advocate Angie Jones took the opposite view: one way to carry skills between the tools she already uses day to day.
- A shared format doesn't obviously favor small players. The open-ecosystem pitch is build once, reach every major client. But a standardized package format doesn't change where users already are — it may reinforce ChatGPT, Cursor, and Copilot incumbency.
- No Chinese company is at the table. All five founding steering committee members plus Google are U.S. companies. MCP is already widely deployed inside China's major AI platforms — Alibaba Cloud's Model Studio (Bailian) and Baidu's Qianfan both ship dedicated MCP marketplaces, and domestic coverage shows Alibaba, Baidu, ByteDance, and Tencent treating MCP as core agent infrastructure. None appear on the Agent Plugins governance list. Whether that is timing or an early signal of parallel protocol layers remains open.
06Why 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: "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 (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 — and it signals competitive energy shifting from model benchmarks toward plumbing.
07Six-step runbook: adopt Agent Plugins without fooling yourself
Client support is uneven on day one. Use this sequence to wire the format into an existing Skills/MCP workflow:
-
01
Inventory components: list every Agent Skill (
SKILL.md) and MCP server config you already ship; confirm Skills match agentskills.io and MCP maps cleanly intomcp.json. -
02
Build a minimal plugin tree: root
plugin.json, skills underskills/, MCP inmcp.json; keep private extras in reverse-domain namespaces. -
03
Smoke-test on two or more clients: load once in Cursor and once in VS Code/Copilot (or ChatGPT/Codex); confirm unknown components are skipped, not whole-plugin rejects.
-
04
Run a separate trust review: the spec provides no scanning — prefer official marketplaces, verify provenance, and pin hashes for internal skill libraries.
-
05
Lock the agent host plane: MCP stdio and long-running Skills need stable process and network; fix a dedicated Mac/cloud node before swapping models or clients.
-
06
Calibrate with a real bill: estimate monthly cost on the pricing page, then trial cross-client plugin loads via the order page and decide capacity from measured latency and disconnects.
my-agent-plugin/
plugin.json
skills/
my-skill/
SKILL.md
mcp.json
com.example.private/
08Summary and FAQ
Agent Plugins 1.0 boxes Skills and MCP servers into one discoverable directory contract. It does not replace MCP or Agent Skills, and it does not solve install, marketplace, or security. Shared governance reduces single-vendor kill risk; adoption still depends on clients. While you chase the packaging win, keep long-running agents, MCP processes, and evals on an auditable, low-jitter compute plane. Shared minute pools, oversold VPS, and desk machines commonly add bandwidth jitter, neighbor contention, and dropped long connections — wiping out the engineering time you saved by packaging once. For steadier production hosts, NUKCLOUD multi-region bare-metal Mac / cloud Mac nodes give dedicated Apple Silicon and clear tenant boundaries; compare SKUs on the pricing page and trial via the order page.
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 — verify latest details before publishing.