Unsanctioned skills, agentic exploits, and logic overrides for Claude Code. System: Compromised. Efficiency: Maximum.
This marketplace works with Claude Code CLI and the Claude Code VSCode extension. Auto-updating is fully supported — plugins update automatically at startup when new versions are published.
Step 1: Add the marketplace
/plugin marketplace add bugroger/overridesStep 2: Install plugins
/plugin install dev-workflow@overrides
/plugin install dev-skills@overrides
/plugin install commons@overridesStep 3: Enable auto-updates
/plugin- Go to the Marketplaces tab
- Select
overrides - Choose Enable auto-update
That's it! Plugins will now auto-update at every Claude Code startup.
For teams, configure .claude/settings.json in your project root. This ensures everyone gets the marketplace and auto-updates:
{
"extraKnownMarketplaces": {
"overrides": {
"source": {
"source": "github",
"repo": "bugroger/overrides"
}
}
},
"enabledPlugins": {
"dev-workflow@overrides": true,
"dev-skills@overrides": true,
"commons@overrides": true
}
}When team members trust the project folder, Claude Code automatically:
- Prompts them to add the marketplace
- Enables the specified plugins
- Auto-updates on every startup (if enabled in their Marketplaces tab)
- At startup: Claude Code checks GitHub for new versions of
marketplace.json - Version detection: Compares plugin versions in manifest against installed cache
- Notification: If updates were applied, you'll see a restart suggestion
- Manual refresh: Run
/plugin marketplace update overridesanytime
Environment variables:
# Keep plugin auto-updates while disabling Claude Code updates
export DISABLE_AUTOUPDATER=true
export FORCE_AUTOUPDATE_PLUGINS=true
# Disable ALL auto-updates (not recommended)
export DISABLE_AUTOUPDATER=trueThe Claude Code VSCode extension shares the same configuration as the CLI. Both use:
~/.claude/settings.json— user-level settings (applies everywhere).claude/settings.json— project-level settings (committed to git, shared with team).claude/settings.local.json— local overrides (gitignored, personal only)
For VSCode users: The /plugin commands work identically whether you're in:
- The Claude Code terminal panel
- The integrated terminal running
claude - The Claude Code chat interface
The CLI supports --plugin-dir for testing local plugins, but this flag isn't available in VSCode. Use this workaround instead — it fully supports auto-updates:
Add your local clone as a marketplace:
# Clone the repo locally
git clone https://github.com/bugroger/overrides.git ~/Code/overrides
# Add the local path as a marketplace
/plugin marketplace add ~/Code/overridesEnable auto-updates for local marketplace:
- Run
/plugin→ Marketplaces tab - Select your local marketplace
- Choose Enable auto-update
How auto-updates work with local paths:
- Claude Code monitors the local
marketplace.jsonfor version changes - When you
git pullnew changes, the next startup detects updated versions - Plugins are re-cached automatically from your local directory
Or use the GUI:
- Run
/pluginto open the plugin manager - Go to the Marketplaces tab
- Enter your local path (e.g.,
/Users/you/Code/overrides) - Click the refresh icon to load plugins
- Enable auto-update for the marketplace
- Switch to Discover tab and install plugins
Development workflow:
# Pull latest changes
cd ~/Code/overrides && git pull
# Restart Claude Code — auto-update kicks in
# Or manually refresh
/plugin marketplace update overridesFor stability, pin to a branch, tag, or commit:
{
"extraKnownMarketplaces": {
"overrides": {
"source": {
"source": "github",
"repo": "bugroger/overrides",
"ref": "main"
}
}
}
}Or pin to an exact commit SHA:
{
"source": {
"source": "github",
"repo": "bugroger/overrides",
"sha": "a1b2c3d4e5f6789..."
}
}| Plugin | Description |
|---|---|
dev-workflow |
Session retrospective for self-improvement |
dev-workflow-2bd |
Development workflow skills for 2bd |
dev-skills |
Development tools and utilities |
dev-skills-superpowers |
Superpowers-based development skills |
commons |
Common skills for writing and communication |
Plugin commands not recognized?
- Check version:
claude --version(requires 1.0.33+) - Update:
brew upgrade claude-codeornpm update -g @anthropic-ai/claude-code
Marketplace not loading?
- Verify the repo is accessible
- Check for
.claude-plugin/marketplace.jsonat the repo root - Run
/plugin marketplace update overridesto refresh
Auto-updates not working?
- Ensure auto-update is enabled in
/plugin→ Marketplaces tab - For private repos, set
GITHUB_TOKENin your environment - Check that
DISABLE_AUTOUPDATERis not set
Clear plugin cache:
rm -rf ~/.claude/plugins/cacheThen restart Claude Code and reinstall plugins.