A marketplace of Claude Code plugins — skills, commands, and agents for development workflows.
Add this marketplace to Claude Code:
/plugin marketplace add ben-everly/claude-plugins
Browse available plugins:
/plugin search @ben-everly
Install a plugin:
/plugin install <plugin-name>@ben-everly
| Plugin | Description | Install |
|---|---|---|
| development-workflow | A structured development workflow covering planning, design, implementation, review, and delivery | /plugin install development-workflow@ben-everly |
| intelephense | PHP language server (Intelephense) with optimized file exclusions to reduce RAM usage | /plugin install intelephense@ben-everly |
| conventional-branches | Name git branches following the Conventional Branch spec (type-first prefixes) | /plugin install conventional-branches@ben-everly |
| ticket-branches | Name git branches after their ticket/issue id (ticket-first, slash-namespaced) for trunk-based dev | /plugin install ticket-branches@ben-everly |
| git-flow | Name branches and point PRs following the git flow model (git-flow CLI / Atlassian) | /plugin install git-flow@ben-everly |
| product-discovery | Product-discovery skills — a Working Backwards (PR/FAQ) document drafter | /plugin install product-discovery@ben-everly |
| brainpower | A toolkit of named thinking techniques — deliberate cognitive moves to test and expand thinking | /plugin install brainpower@ben-everly |
Each plugin lives in its own directory at the repo root with the following structure:
plugin-name/
├── .claude-plugin/
│ └── plugin.json # Plugin metadata (name, version, description, author)
├── skills/ # Skills (SKILL.md files)
│ └── skill-name/
│ └── SKILL.md
├── commands/ # Slash commands (.md files)
│ └── command-name.md
├── agents/ # Agents (.md files)
│ └── agent-name.md
└── .mcp.json # MCP server config (optional)
After adding a plugin directory, register it in .claude-plugin/marketplace.json under the plugins array.
MIT