Agent Plugins might be one of the more useful boring standards for AI agents.
The idea is surprisingly simple:
You package your Agent Skills + MCP servers into one portable folder, and any compatible agent client can load it.
What I like about the approach:
→ It doesn't reinvent Skills or MCP. It just gives them a common packaging layer.
→ One plugin can bundle capabilities that belong together instead of making users install everything separately.
→ Failures are isolated. If one MCP server breaks, a valid Skill in the same plugin can still load.
→ The core stays small. Client-specific features can live in namespaced extensions instead of bloating the standard.
The important caveat: v1 is packaging, not a security model. No permissions, sandboxing, secrets management, registry, or trust model yet.
So if you already maintain Skills or MCP servers, this is probably worth looking at.
I dug into the spec, the folder structure, client support, and what v1 intentionally leaves out in a full breakdown.
Link in the comments 👇
Curious: are you already packaging Skills/MCP, or still managing them separately?