Why Can't We Agree on a Plugin Format? A developer has created a template repository to solve the problem of incompatible plugin formats across coding assistants like Claude Code, GitHub Copilot CLI, and OpenCode, which require different packaging formats and manual editing to transfer plugins. The project aims to let users author a complete plugin once and have it work with each tool's native install flow, addressing a gap in existing solutions that only handle skills or prompts. I switch between coding assistants from time to time. Sometimes it’s Claude Code, sometimes it’s GitHub Copilot CLI, or occasionally I’m playing with OpenCode on a side project. Each one is good at different things, and I like having the option to switch between them. What I don’t like is the tax I pay every time I move my own plugins between them. The annoying part the-annoying-part My plugins aren’t anything fancy. A handful of skills and agents, plus a few MCP servers here and there. Stuff I’ve built up over time and want available wherever I happen to be typing that day. The problem is that every tool has its own packaging format: Claude Code wants a .claude-plugin/ directory, a marketplace.json registry, and skill/agent markdown files with very specific frontmatter. Copilot CLI wants a plugin.json manifest with its own schema, plus a .github/plugin/marketplace.json registry to be discoverable. Codex CLI uses yet another layout under ~/.codex/ . OpenCode has no marketplace concept at all. Each plugin is just files you drop into a project’s .opencode/ folder. The differences are small on their own a field gets renamed in one tool, a directory moves in another, frontmatter keys swap around , but copy-pasting one plugin into the layout another tool expects still takes about fifteen minutes of fiddly editing every time. And I have to do it again on each of my dev machines. Multiply by a few plugins and the friction adds up fast… and then when I want to switch back… well, you get the idea. What other people are doing what-other-people-are-doing Before I built anything, I poked around to see how other people were solving this. There’s a fair bit going on, but most of it didn’t directly address my problem. The biggest projects in this space are large skills libraries that handle the cross-tool install for you. alirezarezvani/claude-skills https://github.com/alirezarezvani/claude-skills and both ship hundreds of https://github.com/borghei/Claude-Skills borghei/Claude-Skills SKILL.md files plus install scripts ./scripts/convert.sh --tool all , npx @borghei/claude-skills add ... that drop the right thing into each tool’s expected directory. They cover 9–11 assistants between them and they clearly work, which is why they have thousands of stars. The catch is they’re skills-only. A skill is one thing in a plugin. Agents, MCP server configs, hooks, slash commands, and the marketplace registry that tells /plugin install what’s available are different things, and those libraries don’t handle them. They also assume Claude’s SKILL.md schema as the canonical source and convert outward, which is fine until you want to author in a tool-neutral format. Happier https://guides.happier.dev/how-to-keep-prompts-and-skills-in-sync-across-claude-code-codex-and-opencode is a companion app that treats your prompt/skill library as the source of truth and exports it to provider-native locations on each machine. It’s a thoughtful approach if you want a long-lived app managing your library, but again the surface is prompts and skills, not full plugin bundles. A few people are reaching for symlinks https://understandingdata.com/posts/symlinked-agent-configs/ , keeping one master file and linking it into each tool’s expected path. That only solves the case where the files are identical across tools. But a lot of the providers have different frontmatter requirements, and some have fields the others don’t support. These are all really cool projects. They just don’t solve the specific thing I was hitting: I wanted to author a complete plugin skills, agents, hooks, MCP, plus the marketplace metadata once, and let each tool’s native /plugin install flow consume it without me hand-editing four versions every time something changed. The template repo the-template-repo plugin-marketplace-template https://github.com/jrob5756/plugin-marketplace-template is a GitHub template repository I created to help eliminate some of this toil. You click “Use this template,” get your own copy, and that copy is a working plugin marketplace from day one. It’s a template because it doesn’t actually contain any plugins, just the scaffolding to make it easy to add your own and keep them in sync across tools. You author each plugin once: plugins/