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 is for readers tracking AI agent interoperability, MCP / Agent Skills packaging, and client-side security. You get a full timeline, key-facts table, predecessor comps, controversy analysis, six adoption steps, and FAQ. After reading you should know: does it replace MCP, who owns security, and whether you should package to this format now.
01 What actually happened: the timeline from MCP to Agent Plugins
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.
Agent Plugins is the third layer in an 18-month stack, not a standalone invention:
- 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.mdfolders. - 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.
Pain point in one line: fragmented packaging → duplicated engineering → security and trust still left to each client.
02 Key facts at a glance — and how Agent Plugins compares to what came before
Separate the packaging layer from the runtime protocols before you change any release pipeline:
| 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. 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 is building support into Antigravity, Gemini CLI, and its Data Agent Kit.
| 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.
03 Why the design is deliberately narrow
It standardizes the container, not the contents. 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. A client that does not recognize a component type simply skips it rather than rejecting the whole plugin.
my-agent-plugin/
├── plugin.json
├── skills/
│ └── .../SKILL.md
└── mcp.json
install / sandbox / trust: explicitly out of scope
It explicitly punts on the hard parts. 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 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.
Citeable hard facts:
- Scope: exactly two component types — Agent Skills and MCP servers.
- Day-one clients: ChatGPT/Codex, Cursor, GitHub Copilot, Kiro, VS Code.
- Security backdrop: Snyk's audit of nearly 4,000 published skills found flaws in 36.8%, with 13.4% critical; AIR's fake-skill demo reached an estimated 26,000 agents.
04 The unresolved fight: security, skepticism, and six adoption steps
- 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. Developer advocate Angie Jones took the opposite view: one way to carry skills between the tools she uses day to day.
- A shared format does not 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 does not 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.
- 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.
Six adoption steps:
- Separate the three layers: MCP = connection; Agent Skills = reusable instructions; Agent Plugins = packaging and discovery. Do not treat them as substitutes.
- Check your client list: Confirm whether ChatGPT/Codex, Cursor, Copilot, VS Code, and Kiro are already on the day-one support list; treat Google Antigravity, Gemini CLI, and Data Agent Kit as committed follow-ons.
- Package once to the directory contract: root
plugin.json, skills underskills/(must matchSKILL.md), MCP config inmcp.json; unknown component types should be skipped, not reject the whole plugin. - Write security into your checklist: the spec does not cover install, sandbox, or provenance — prefer official marketplaces, verify source, never trust star counts alone; update review flows against AIR / Snyk cases.
- Run a cross-client smoke test: load the same package in at least two clients and confirm Skills and MCP discovery before retiring per-platform packaging scripts.
- Watch governance and regional follow-through: track
agentplugins/agent-plugins-specand agent-plugins.org; keep a dual-packaging buffer until domestic clients publish adoption plans.
Official entry points (re-check after upstream updates):
https://vercel.com/blog/introducing-agent-plugins
https://developers.googleblog.com/agent-plugins-package-your-skills-tools-and-more/
05 FAQ: why it matters beyond the spec, and how to choose Mac infra
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: "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.
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 that defines how you bundle an MCP server's configuration (along with Agent Skills) into one portable folder.
- 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.
- 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 any third-party plugin the way you'd treat an unfamiliar npm package.
- 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 had not 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 do not list Anthropic among the founding maintainers. None of the launch materials explain the omission, and Anthropic has not issued a public statement on Agent Plugins as of this writing.
For teams whose workflows depend on a full macOS environment for Cursor, Claude Code, MCP servers, and iOS CI/CD — and who need nodes online 7×24 — cloud API-only stacks still leave you with latency, token-bill volatility, and client-policy churn, while unstable local machines break smoke tests. CALMVPS bare-metal Mac Mini M4 rental is usually the stronger production fit: dedicated Apple Silicon, multi-region nodes, 120-second delivery. See the CALMVPS pricing page.
Sources: Vercel Blog, "Introducing Agent Plugins," and Vercel Changelog (August 6, 2026); agent-plugins.org Spec 1.0.0 (Working Draft); Google Developers Blog (August 6, 2026); The Next Web, Virtualization Review; Anthropic Agent Skills updates; AIR security research; Snyk "ToxicSkills"; Help Net Security; 36Kr and Alibaba Cloud Developer Community on Chinese MCP adoption; OpenAI "Improving GPT‑5.6 Sol in ChatGPT"; TechCrunch. Compiled as of August 7, 2026 — verify the latest details before publishing.