A collection of shareable plugins for Claude Code.
| Plugin | Description |
|---|---|
| external-agent-review | Get an external code review from another AI model (Codex or Gemini CLI) |
/plugin marketplace add verygoodsoftwareorg/claude-plugins/plugin install external-agent-review@verygood-pluginsAdd to your project's .claude/settings.json to pre-configure for team members:
{
"extraKnownMarketplaces": {
"verygood-plugins": {
"source": {
"source": "github",
"repo": "verygoodsoftwareorg/claude-plugins"
}
}
},
"enabledPlugins": {
"external-agent-review@verygood-plugins": true
}
}- Create a directory under
plugins/with your plugin name - Add
.claude-plugin/plugin.jsonwith the plugin manifest - Add skills under
skills/<skill-name>/SKILL.md - Add a
README.mddescribing the plugin - Register the plugin in
.claude-plugin/marketplace.json - Submit a pull request
.claude-plugin/
marketplace.json # Marketplace catalogue
plugins/
<plugin-name>/
.claude-plugin/
plugin.json # Plugin manifest
skills/
<skill-name>/
SKILL.md # Skill definition
README.md # Plugin documentation