Agent Plugins
Quick Take
Agent Plugins is an open, vendor-neutral standard for packaging reusable AI agent capabilities into a single, portable format. It was proposed and published by Vercel, but it’s governed jointly: the Technical Steering Committee for the 1.0.0 release includes core maintainers from Amazon Web Services, Anysphere (the company behind Cursor), GitHub, Microsoft, OpenAI, and Vercel, with Google announcing it was joining the same day. It’s more accurate to describe this as an industry standard Vercel helped start than as a Vercel-only tool.
What It Actually Standardizes
Agent Plugins doesn’t invent new capabilities. It packages two things that already existed separately, Agent Skills and MCP (Model Context Protocol) servers, into one shared, portable directory structure:
- A
plugin.jsonmanifest at the root (the only strictly required part is a schema reference and a plugin name) - Skills organized under a
skills/folder, for clients that support Agent Skills - MCP server configuration in
mcp.json, for clients that support MCP
Compatible clients discover a plugin by checking for plugin.json, then read whichever components they support. A failed MCP server doesn’t disable the plugin’s Skills, and one invalid Skill is skipped rather than breaking the whole plugin, so a plugin degrades gracefully across clients with different levels of support.
Why Portability Matters Here
Before a shared standard, a developer who built a useful reusable capability, a Skill, a set of MCP tools, generally had to repackage it separately for every AI client they wanted it to work in: one version for Claude Code, a different structure for Codex, another for Cursor, and so on. Agent Plugins removes that duplication: package a capability once, and any supporting client can load it without the author maintaining multiple parallel versions.
At launch, supported clients include ChatGPT, Codex, Cursor, GitHub Copilot, Kiro, and VS Code, a meaningfully wide surface for a first release, and a sign that reusable agent capabilities are becoming genuinely portable between coding environments rather than locked to a single vendor’s ecosystem.
How It Connects to Skills, MCP, and Portable Context
Agent Plugins sits one layer above two ideas Ainanza already covers separately: Agent Skill, a single reusable capability, and MCP, a protocol for connecting an AI client to external tools and data. Agent Plugins is the packaging and distribution layer that makes a bundle of Skills and MCP servers move between clients as one unit, which is closely related to the broader idea of portable context: capability and configuration that travels with you instead of staying locked inside one tool.
Current Limitations
- Scope is intentionally narrow in v1.0. Only Skills and MCP servers are standardized so far. Commands, hooks, and agent definitions remain client-specific for now.
- Support varies by client. Not every listed client implements every part of the spec identically; check a specific client’s documentation for exact support.
- Very new. Announced August 6, 2026, this is a first release of a young standard. Expect the spec, and the list of supporting clients, to keep evolving.
Alternatives and Related Approaches
There isn’t a direct “alternative” to an open standard in the usual sense, but related, narrower approaches include client-specific extension systems (each AI coding tool’s own plugin or extension format before this standard existed) and manually maintaining separate Skill or MCP configurations per tool, which is exactly the duplication Agent Plugins is meant to remove.
For the underlying building blocks, see the Agent Skill and Model Context Protocol glossary entries, and What Are MCP Connectors? for how MCP itself works.
Continue learning
Explore related guides, tools, workflows, and prompts that help you go deeper into this topic.
See how this tool fits into a workflow
Browse step-by-step AI workflows that use ChatGPT, Claude, Gemini, and other tools.
Frequently Asked Questions
Is Agent Plugins a Vercel product?
Not exclusively. Vercel initiated the proposal and published the announcement, but Agent Plugins 1.0.0 is governed as an open, multi-vendor standard, with a Technical Steering Committee including core maintainers from Amazon Web Services, Anysphere (Cursor), GitHub, Microsoft, OpenAI, and Vercel. It's more accurate to think of it as an industry-backed specification than a single-company tool.
What does Agent Plugins actually standardize?
It packages two existing technologies, Agent Skills and MCP (Model Context Protocol) servers, into a single portable directory format with a plugin.json manifest at its root, Skills under a skills/ folder, and MCP configuration in mcp.json. This lets a plugin author write one plugin instead of a separate version for every client.
Which AI clients support Agent Plugins?
At launch, Agent Plugins works across ChatGPT, Codex, Cursor, GitHub Copilot, Kiro, and VS Code. A failed MCP server inside a plugin doesn't disable its Skills, and an invalid Skill is skipped rather than breaking the whole plugin.
Is Agent Plugins open source?
Yes. It's described as an open, multi-vendor project with publicly accessible governance, contribution process, and technical decisions hosted on GitHub.
What doesn't Agent Plugins cover yet?
Version 1.0 deliberately scopes to just two component types, Skills and MCP servers. Other elements like commands, hooks, and agents remain specific to each client for now, and may be standardized in a future version.
Last updated: