Agent Plugins 1.0: Build Once, Run in Any AI Agent Agent Plugins 1.0, a packaging standard for AI agent plugins agreed upon by Amazon, Cursor, Google, Microsoft, OpenAI, and Vercel, was released on August 6 and became generally available across GitHub's Copilot ecosystem on August 12. The standard defines a single directory format with plugin.json, skills/, and mcp.json, allowing developers to build once and run in any compatible AI agent client, reducing the need to maintain multiple plugin formats. It does not replace MCP but complements it by providing a container for tools and skills. Six of the biggest names in AI tooling — Amazon, Cursor, Google, Microsoft, OpenAI, and Vercel — agreed on a packaging standard for AI agent plugins while the official standards bodies were still scheduling their first meeting. Agent Plugins 1.0 https://agent-plugins.org/specification dropped August 6, went GA across GitHub’s entire Copilot ecosystem on August 12, and it quietly solves a problem every developer building AI integrations has been fighting: maintaining the same plugin in five different formats for five different clients. The Problem: Your Plugin, Packaged Five Times If you’ve shipped a skill or tool integration for more than one AI agent client, you already know what Agent Plugins 1.0 fixes. Before this spec, packaging the same capability for Cursor, GitHub Copilot, and ChatGPT meant separate directory layouts, separate manifest schemas, and separately shaped MCP configurations for each platform. Same code. Three to five copies of the wrapper around it. The maintenance burden only compounds as more agent clients launch. Agent Plugins collapses that into one directory that any compatible client can install. What the Standard Actually Is Agent Plugins 1.0 is a packaging format, not a new protocol. A plugin is a directory with three things: plugin.json — the portable manifest required skills/ — Agent Skills, one sub-directory per skill optional mcp.json — MCP server declarations optional A working plugin.json needs four fields: { "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json", "name": "my-dev-tools", "description": "Deployment utilities for React apps", "version": "1.0.0" } That’s the whole manifest. The deliberate minimalism — distribution, security, and UX left entirely to each platform — is precisely what allowed six vendors to agree in weeks rather than years. This Isn’t Replacing MCP The most common misread is that Agent Plugins 1.0 competes with MCP. It doesn’t. MCP defines how agents and tools communicate. Agent Plugins defines how you ship those tools — alongside skills — in one installable package. An Agent Plugin carries an MCP server in its mcp.json . Think npm package vs. the code inside it: one is the container, one is the protocol. Where It Works Today As of August 12, Agent Plugins 1.0 is generally available in: - GitHub Copilot in VS Code - GitHub Copilot CLI copilot plugin install