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 maps what shipped, what was left blank, and how to evaluate it without mixing layers.
SECTION 01 Easy ways to misread the Agent Plugins launch
- Treating it as a new runtime protocol: It does not replace MCP or Agent Skills. It standardizes the container on top of both.
- Assuming the spec covers safety: v1 defines no install path, marketplace, permissions, sandboxing, or provenance checks — clients own that risk surface.
- Equating "day-one support" with every Google product being live: Launch clients are ChatGPT/Codex, Cursor, Copilot, Kiro, and VS Code. Google said it is building support into Antigravity, Gemini CLI, and its Data Agent Kit.
- Ignoring recent malicious-skill research: About a month earlier, AIR showed a fake skill bypassing several scanners; Snyk's audit of nearly 4,000 skills found flaws in 36.8% and critical issues in 13.4%.
- Assuming a global governance table: Founding TSC members plus Google are all U.S. companies; major Chinese platforms that already ship MCP marketplaces are not listed as authors.
- Confusing packaging with production hosts: A shared folder format does not give you a stable macOS runtime for long-lived agents — see also agentic threat defense notes.
Bottom line: Agent Plugins standardizes how the box looks. It does not decide whether the box is trustworthy, how it is installed, or where you download it.
SECTION 02 Timeline: this did not 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 |
| 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 adopt MCP |
| October 16, 2025 | Anthropic launches Agent Skills in Claude Code (SKILL.md) |
| December 18, 2025 | Agent Skills becomes an open standard 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 TSC; Google joins as a core maintainer the same day |
MCP solved connecting agents to tools. Agent Skills solved teaching reusable procedures. Neither solved how those two component types get packaged and discovered consistently across clients — that gap is what Agent Plugins targets.
SECTION 03 Key facts: what is standardized, and why the design is narrow
| Item | Detail |
|---|---|
| Spec version | Agent Plugins 1.0.0 (Working Draft) |
| Proposal initiator | Vercel |
| Steering committee | Amazon (AWS), Anysphere/Cursor, Microsoft, OpenAI, Vercel; Google added Aug 6, 2026 |
| Component types | Exactly two: Agent Skills, MCP servers |
| Core files | Root plugin.json; skills/ directory; mcp.json for MCP config |
| Clients at launch | ChatGPT and Codex, Cursor, GitHub Copilot, Kiro, VS Code |
| Governance | Open license, public GitHub repo agentplugins/agent-plugins-spec; no single company owns the roadmap |
| Explicitly out of scope | Installation, distribution/marketplaces, permission models, sandboxing, trust/provenance, UX |
It standardizes the container, not the contents. A plugin is a directory with plugin.json at the root. Skills live under skills/ and must conform to the Agent Skills spec. MCP servers are declared in mcp.json (stdio, Streamable HTTP, or legacy HTTP+SSE). Unknown component types are skipped rather than rejecting the whole package. Reverse-domain namespaces (for example com.cursor.xxx/) hold client-specific extras outside the portable core.
It explicitly punts on the hard parts. Google's announcement calls the omissions deliberate. A narrow scope is what let competing companies agree in months. The tradeoff: "is this plugin safe to run" stays entirely on each client.
Timing tracks adoption pressure. Agent Skills had already spread to 32+ tools. At that scale, every client re-solving packaging independently becomes real duplicated engineering cost.
my-plugin/
├── plugin.json
├── skills/
│ └── summarize/
│ └── SKILL.md
├── mcp.json
└── com.example.client/
└── hooks/
SECTION 04 Compare the stack + a 6-step adoption checklist
| Standard | Backed by | Problem it solves | Status today |
|---|---|---|---|
| ChatGPT Plugins (2023) | OpenAI only | Third-party ChatGPT functionality | Discontinued 2024; replaced by GPTs Store |
| MCP (2024) | Anthropic, later Linux Foundation | Protocol for calling external tools/data | De facto industry standard |
| Agent Skills (2025) | Anthropic, spun out as open standard | Reusable instructions/workflows | 32+ tools; still expanding |
| Agent Plugins (2026) | Vercel + multi-company TSC | Unified packaging/discovery for Skills + MCP | 1.0 working draft; Google already onboard |
Unresolved fights: security was left on the table (AIR's brand-landingpage fake skill borrowed credibility from a ~36,000-star repo, passed scanners at Cisco, Nvidia, and skills.sh, and reached an estimated 26,000 agents via TOCTOU); SST's Dax Raad called it a "thin standard," while Angie Jones welcomed portable skills; a shared format may help small authors ship once, or may mainly reinforce incumbents with existing users; Chinese majors that already operate MCP marketplaces are absent from the author list — timing lag or early signal of parallel protocol layers.
- Separate the layers: Confirm you need packaging/discovery, not a rewrite of MCP wire behavior or Skills semantics.
- Inventory what you already ship: List existing
SKILL.mdfolders and MCP server configs, plus target clients. - Create the skeleton: Add a root
plugin.jsonthat targets Agent Plugins 1.0 (schema + name at minimum). - Move skills: Place them under
skills/with Agent Skills-compliant frontmatter and layout. - Move MCP config: Declare servers only in root
mcp.json— do not inline MCP intoplugin.json. - Validate security and compatibility: Prefer official marketplaces, verify provenance, do not trust star counts alone, and load the package in each target client so unknown components skip cleanly. Re-check the live spec before you publish.
SECTION 05 Why it matters beyond the spec + citeable sources
- Anniversary-week signal: GPT-5 turned one on August 7, 2026; OpenAI also pushed GPT-5.6 Luna (unlimited free-tier text chats) and GPT-5.6 Sol (a "thinking effort" slider) in the same week as the Agent Plugins announcement.
- Three-layer stack: MCP solves connection, Agent Skills solves teaching, Agent Plugins solves distribution.
- Hard numbers to keep: Spec 1.0.0 working draft; exactly two component types; 32+ Skills-adopting tools; Snyk 36.8% / 13.4% critical on ~4,000 skills; AIR case ~26,000 agents reached.
- 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."
Primary sources (compiled as of August 7, 2026; verify before you rely on them in production decisions):
Vercel Blog: Introducing Agent Plugins
Vercel Changelog: Introducing Agent Plugins 1.0.0
agent-plugins.org specification site
Google Developers Blog: Agent Plugins package your skills, tools, and more
The Next Web: OpenAI and four rivals just agreed on one standard for AI agents
A shared plugin box reduces packaging friction. It does not replace a durable native macOS host for Xcode, Metal, and 24/7 agent work. Virtualized cloud Macs often add overhead and compatibility risk. For zero-loss Apple silicon, stable iOS CI/CD, and long-running AI Agent automation, MACNOX cloud physical nodes are usually the stronger production choice: genuine Apple hardware, full root, no hypervisor tax, day/week/month billing. Cross-read agent security hardening and GPT-5.6 pricing shifts for the adjacent stack.
SECTION 06 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 bundles MCP server configuration (along with Agent Skills) into one portable folder that different clients can discover. MCP and Agent Skills still define behavior; Agent Plugins standardizes how they are 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. Agent Plugins adds a manifest and folder convention so a skill or 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. Given documented bypasses of major scanners and an estimated 26,000-agent reach in one 2026 test, treat third-party plugins like unfamiliar npm packages: check the source, do not trust star counts alone, and prefer official marketplaces with your client's own vetting.
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 had not claimed full shipment across those products at announcement time.
Why isn't Anthropic on the steering committee?
Public announcements from Vercel, Google, and the specification site do not list Anthropic among the founding maintainers, despite Agent Skills originating at Anthropic. Launch materials do not explain the omission, and Anthropic had not issued a public statement on Agent Plugins as of this writing. Watch whether Anthropic adopts the format in its own products.