claude-helpers
Shared Claude Code marketplace for multi-perspective code review — a curated collection of plugins for dev teams.
Structure
claude-helpers/
├── .claude-plugin/
│ ├── plugin.json # Plugin manifest (claude-helpers plugin)
│ └── marketplace.json # Marketplace catalog (3 plugins)
├── skills/ # Skills for the claude-helpers plugin
│ └── team-code-review/ # 6-stage multi-model code review pipeline
│ ├── SKILL.md # Skill definition (orchestration logic)
│ └── README.md # Prerequisites, setup, and usage guide
├── hooks/ # Shared Claude Code hooks
│ └── README.md # Copy-paste JSON snippets and hook index
└── README.md # This file
Plugins
This marketplace distributes three plugins. The claude-helpers plugin is internal; the other two are curated from upstream repos via strict: false marketplace entries that cherry-pick specific skills.
Skill Invocation
| Skill | Invoke |
|---|
| team-code-review | /claude-helpers:team-code-review |
| bmad-code-review | /bmad-review:bmad-code-review |
| devils-advocate | /devils-advocate:devils-advocate |
Dependency Map
The team-code-review pipeline orchestrates skills from multiple plugins. This table tracks origin and ownership so the team knows where to look for updates or file issues.
Hooks
| Hook | Event | Matcher | Description |
|---|
| Destructive Command Guard | PreToolUse | Bash | Flags destructive delete commands (rm, rmdir, shred, unlink, -delete) and prompts for confirmation |
See hooks/README.md for install instructions.
Guides
| Guide | Platform | Description |
|---|
| Windows Toast Notifications | Windows | Native toast notifications for Claude Code events — see which project needs attention across multiple sessions |
Installation
This repo is a self-hosted marketplace containing three plugins. Add the marketplace, then install the plugins.
1. Add the marketplace
claude plugin marketplace add stcomiin/claude-helpers
For non-GitHub hosts, use the full URL:
claude plugin marketplace add https://gitlab.com/<your-org>/claude-helpers.git
2. Install plugins
claude plugin install claude-helpers@claude-helpers
claude plugin install bmad-review@claude-helpers
claude plugin install devils-advocate@claude-helpers
The format is plugin-name@marketplace-name.
Team auto-install
Add the marketplace to your project's .claude/settings.json so it auto-installs for all team members:
{
"extraKnownMarketplaces": {
"claude-helpers": {
"source": {
"source": "github",
"repo": "stcomiin/claude-helpers"
}
}
}
}
When team members trust the project folder, Claude Code prompts them to install the marketplace and its plugins.
Update
Refresh the marketplace listing and update installed plugins:
claude plugin marketplace update claude-helpers
Or enable auto-updates via /plugin → Marketplaces → select claude-helpers → Enable auto-update.
Local development