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 full timeline, key-facts and comparison tables, design tradeoffs, a six-step adoption checklist, security numbers, the Dax Raad / Angie Jones debate, the Chinese-platform gap, and FAQ.
01 What happened: from MCP to Agent Plugins — and the packaging pain
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.
- Packaging fragmentation: The same Skills / MCP config has to be wrapped separately for Claude Code, Cursor, and VS Code Copilot.
- Discovery doesn't travel: Clients recognize different directory habits, so "build once, load everywhere" was nearly impossible.
- Security still orphaned: Malicious Skills have already bypassed mainstream scanners — and the new standard deliberately omits trust and sandboxing, so the risk passes through unchanged.
- Governance and geography: Who the shared format actually favors — and the fact that no Chinese company sits on the steering committee — shape long-term adoption paths.
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. Full timeline:
| 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) to standardize how agents connect to external tools and data; 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.
02 Key facts at a glance — and how Agent Plugins compares to what came before
First the spec's hard facts, then a side-by-side with ChatGPT Plugins, MCP, and Agent Skills:
| 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.*
| 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.
03 Deep dive: what it standardizes — and why the design is deliberately narrow
1. One manifest, two component types
A plugin is a directory with a plugin.json manifest at its root, declaring which spec version the package targets. If it ships skills, they live in a skills/ folder and must conform to the existing Agent Skills specification (SKILL.md). 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 — a client that doesn't recognize a component type simply skips it rather than rejecting the whole plugin. A reverse-domain namespace mechanism (for example com.cursor.xxx/) is reserved for client-specific extras that don't leak into the portable core.
my-agent-plugin/
├── plugin.json # Manifest: declares spec version
├── skills/ # Agent Skills (must conform to SKILL.md)
│ └── .../SKILL.md
├── mcp.json # MCP server config (stdio / Streamable HTTP, etc.)
└── com.cursor.xxx/ # Optional: client-private extension namespace
2. The deliberate blanks are the real fight
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, 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.
3. Why now, not earlier
MCP and Agent Skills each followed a "vendor invents, then opens, then industry follows" path (MCP went to the Linux Foundation; Agent Skills was opened by Anthropic). Agent Plugins was multi-company from day one — in part a lesson from years of fragmented packaging. 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.
Why it matters beyond the spec
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 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 (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 — a sign that competitive energy is shifting from model benchmarks toward the plumbing underneath them.
04 Six-step checklist: how to evaluate and package Agent Plugins
The spec just launched — you do not need a full production migration tomorrow. If you already maintain Skills or MCP servers across multiple clients, use these six steps to cut duplication and contain security risk:
- Inventory what you already ship: List existing Agent Skills (
SKILL.md) and MCP server configs; confirm they conform to the open specs, not client-private formats. - Build a unified directory skeleton: Create a plugin root, write a version-declaring
plugin.json, place skills underskills/, and declare MCP servers inmcp.json. - Validate on day-one clients first: Load the same package in ChatGPT/Codex, Cursor, GitHub Copilot, Kiro, and VS Code; confirm unknown-component skip behavior matches expectations.
- Keep private extras in reverse-domain namespaces: Client-only extensions go under paths like
com.cursor.xxx/so they do not pollute the portable core. - Treat security review as outside the standard: Prefer official marketplaces, verify source repositories, watch for TOCTOU-style link swaps after scan — do not trust star counts alone.
- Align the runtime compute environment: A standard package still runs on real machines. If workflows depend on Apple Silicon, iOS toolchains, or long-running unattended agents, compare bare-metal Mac nodes against virtualized cloud instances for loss and stability (see our bare-metal architecture manifesto).
05 Controversies, citable hard data, FAQ, and engineering takeaway
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 (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. - 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 — making the shared format mostly symbolic. 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, reinforcing rather than disrupting the current leaderboard of ChatGPT, Cursor, and Copilot.
- No Chinese company is at the table: All five founding steering committee members — Vercel, OpenAI, Microsoft, Amazon, and Anysphere — plus Google, which joined on launch day, are U.S. companies. MCP itself is already widely deployed inside China's major AI platforms: Alibaba Cloud's Model Studio (Bailian) and Baidu's Qianfan platform both ship dedicated MCP marketplaces, and domestic coverage (36Kr, Alibaba Cloud's developer community) shows Alibaba, Baidu, ByteDance, and Tencent all treat MCP as core agent infrastructure. None of them appear on the Agent Plugins governance list. Whether that's simply a timing gap or an early signal of a second protocol layer developing in parallel between the U.S. and China's agent ecosystems is a question the initial announcements have not addressed directly.
Citable hard data (as of publication)
- Spec version and status: Agent Plugins 1.0.0, Working Draft; working draft first published July 24, 2026; five-company public launch August 6, 2026; Google joined as a core maintainer the same day.
- Coverage: Packages exactly two component types — Agent Skills and MCP servers; day-one clients include ChatGPT/Codex, Cursor, GitHub Copilot, Kiro, and VS Code.
- Security side evidence: AIR demo fake skill bypassed Cisco / Nvidia / skills.sh scanners and reportedly reached ~26,000 agents; Snyk audited nearly 4,000 skills — 36.8% had flaws, 13.4% contained critical-severity issues.
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.
Sources and further reading (compiled as of August 7, 2026; verify against the latest official docs after publication):
Vercel Blog: Introducing Agent Plugins (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: OpenAI and four rivals just agreed on one standard for AI agents
Virtualization Review: Cloud Giants Back Agent Plugins for Cross-Client AI
The open standard unifies the "box," not trust, sandboxing, or install paths; client-private extensions will keep diverging, and malicious Skills will not vanish because of one more plugin.json. Pinning every Agent workflow on a single virtualized cloud instance still means hypervisor overhead, weak Apple Silicon / iOS toolchain fit, and long-cycle unattended stability risk. For teams that need zero-loss native compute, stable iOS CI/CD, and 24/7 AI Agent automation, ZUKCLOUD bare-metal Mac mini cloud nodes are usually the better production fit: dedicated Apple Silicon hardware, no hypervisor tax, always-on, elastic daily/weekly/monthly billing. See pricing or order; architecture rationale in our bare-metal architecture manifesto.