
Introducing Agent Plugins
Quick Answer
Vercel has launched Agent Plugins 1.0.0, a vendor-neutral standard for packaging AI agent skills and MCP servers, allowing for easier integration across clients like ChatGPT and GitHub Copilot.
Quick Take
This format simplifies the discovery and loading of components while maintaining client-specific flexibility through a namespaced extension mechanism.
Key Points
- Agent Plugins provides a common format for AI agent skills and servers.
- The structure includes a plugin.json manifest and designated component locations.
- Clients can support Skills, MCP servers, or both without repackaging components.
- Vercel collaborated with AWS, Microsoft, and others to create this open standard.
- Initial support includes platforms like ChatGPT, GitHub Copilot, and VS Code.
📖 Reader Mode
~4 min readA common format for packaging Agent Skills and MCP servers into distributable plugins
Today, Agent Plugins 1.0.0 is publicly available. Agent Plugins is an open, vendor-neutral standard for plugins that extend AI agents.
Agent Skills provide reusable instructions and resources for AI agents. MCP servers connect agents to tools and services. Both can be reused across clients, but clients often package and discover them differently.
Agent Plugins gives compatible clients a common format: a directory with a plugin.json manifest and fixed locations for its components. The format is intentionally small and easy to implement, and it leaves installation, distribution, policy, user experience, and client-specific capabilities to each client.
Copy link to headingOne package for the portable parts
Extension authors often adapt the same component to several client formats. Even though the underlying Skill or MCP server is identical, clients often expect different top-level metadata, discovery paths, or MCP configuration.
Agent Plugins gives those shared components one predictable, structured home:
my-plugin/
├── plugin.json
├── skills/
│ └── summarize/
│ ├── SKILL.md
│ ├── scripts/
│ └── references/
├── mcp.json
└── com.example.client/
A minimal JSON manifest (plugin.json) identifies the specification version and names the plugin:
plugin.json
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "my-plugin"
}
Those two fields are the minimum requirement for the manifest, and the rest of the contract is represented in the file structure of the directory itself. A reusable component should not need to be repackaged for every client, so the format specifies only what a client needs to discover and load what is inside.
Every compatible client checks for plugin.json at the plugin root. Clients that support Skills discover them under skills/. Clients that support MCP servers read their configuration from mcp.json. A client can support either component type or both. After the client validates the manifest, components are validated independently, so one invalid component does not disable unrelated ones.
For plugin authors, that means fewer client-specific conventions for the same component. For client implementers, the specification defines a small, deterministic contract for discovery, validation, and loading.
Copy link to headingSmall on purpose
Agent Plugins defines the portable contract for a plugin and leaves the behavior of the client up to each client.
Version 1 focuses that contract on two component types: Agent Skills and MCP servers. Both already have specifications and meaningful adoption of their own, and Agent Plugins does not attempt to redefine them. Agent Plugins provides a shared definition of how clients find the components together in a distributable plugin.
Other components, such as commands, hooks, and agents, remain with clients. The Technical Steering Committee may consider additional component types in future versions as semantics converge and a demonstrated portability need emerges.
Keeping the boundary small makes the format easier to implement and gives the ecosystem room to converge before adding more portable surface area.
Copy link to headingClients retain flexibility
Clients need freedom to innovate while a shared format evolves, so Agent Plugins includes a namespaced extension mechanism for client-specific data and files.
Extensions remain outside the portable contract. Each client defines its own namespace, and other clients ignore it. This prevents client-specific behavior from leaking into the common format or blocking adoption of the shared components. A client-specific capability can remain client-specific until there is reason and consensus to standardize it.
Copy link to headingAn open, multi-vendor project
Vercel initiated the proposal, which representatives from Amazon Web Services (AWS), Anysphere, GitHub, Microsoft, OpenAI, and Vercel refined collaboratively into Agent Plugins 1.0.0.
The initial Technical Steering Committee includes Core Maintainers from AWS, Cursor, Microsoft, OpenAI, and Vercel.
The project is openly licensed, and its maintainers, contribution process, and technical decisions are public. No single company's product roadmap sets the format's direction.
Copy link to headingBuild with Agent Plugins 1.0.0
The specification, its JSON Schemas, and guides for plugin authors and client implementers are available at agent-plugins.org. Governance and the contribution process live in the Agent Plugins specification repository on GitHub.
If you author agent extensions, you can use the specification to package Skills and MCP servers behind one portable manifest. If you build an agent client, the specification's conformance checklist defines the minimum requirements for discovering and loading Agent Plugins.
At launch, Agent Plugins are supported across:
ChatGPT and Codex
Cursor
GitHub Copilot
Kiro
VS Code
Plugin authors can package components once, and their plugin will automatically carry between supporting clients.
Agent Plugins is a contract between the authors who build extensions for agents and the clients that load them. That contract is now defined and open for both sides to shape.
— Originally published at vercel.com
Want this in your inbox every morning?
Daily brief at your local 8am — bilingual EN/中文, free.
More from Vercel AI
See more →
The Agent Stack
The Agent Stack by Vercel AI provides essential building blocks for creating production-grade agents, enabling seamless integration across multiple AI models and secure operations. It features components like AI Gateway for model routing, Workflow SDK for durable execution, and Vercel Connect for scoped access, streamlining agent development and deployment across various platforms.

