ironbob's customized plugins
npx claudepluginhub ironbob/claude-marketplaceCore skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques
This is a personal Claude Code plugin marketplace that points to customized versions of plugins.
| Plugin | Source | Changes from upstream |
|---|---|---|
superpowers | ironbob/SuperPower_light | Lighter review flow, reduced token usage, adapted for concurrency=1 |
Add an entry to ~/.claude/plugins/known_marketplaces.json:
{
"claude-plugins-official": { ... },
"superpowers-marketplace": { ... },
"ironbob-marketplace": {
"source": {
"source": "github",
"repo": "ironbob/claude-marketplace"
},
"installLocation": "/Users/<YOUR_USERNAME>/.claude/plugins/marketplaces/ironbob-marketplace",
"lastUpdated": "2026-03-21T00:00:00.000Z"
}
}
Clone it locally so Claude Code can read it:
git clone https://github.com/ironbob/claude-marketplace.git \
~/.claude/plugins/marketplaces/ironbob-marketplace
In ~/.claude/settings.json, add under enabledPlugins:
"superpowers@ironbob-marketplace": true
And remove (or set to false) the original if present:
"superpowers@claude-plugins-official": false
Clone the plugin into the cache directory:
mkdir -p ~/.claude/plugins/cache/ironbob-marketplace/superpowers
git clone https://github.com/ironbob/SuperPower_light.git \
~/.claude/plugins/cache/ironbob-marketplace/superpowers/5.0.5
Add to ~/.claude/plugins/installed_plugins.json under "plugins":
"superpowers@ironbob-marketplace": [
{
"scope": "user",
"installPath": "/Users/<YOUR_USERNAME>/.claude/plugins/cache/ironbob-marketplace/superpowers/5.0.5",
"version": "5.0.5",
"installedAt": "2026-03-21T00:00:00.000Z",
"lastUpdated": "2026-03-21T00:00:00.000Z",
"gitCommitSha": "97ca9c0"
}
]
Replace
<YOUR_USERNAME>with your macOS username throughout.
Quit and reopen Claude Code. The customized superpowers skill will be active.
When ironbob/SuperPower_light is updated:
cd ~/.claude/plugins/cache/ironbob-marketplace/superpowers/5.0.5
git pull
Then restart Claude Code.
cd ~/.claude/plugins/marketplaces/ironbob-marketplace
git pull