Official SuperClaude plugin marketplace
npx claudepluginhub superclaude-org/superclaude_pluginTransform Claude Code into a structured development platform with 29 /sc: commands, 23 specialized agents, 7 behavioral modes, and MCP server integration
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Curated collection of 141 specialized Claude Code subagents organized into 10 focused categories
Quick Start • Support • Features • Docs • Contributing
| Commands | Agents | Modes | MCP Tools |
|---|---|---|---|
| 29 | 23 | 7 | 10 |
| Slash Commands | Specialized AI | Behavioral | Integrations |
Use the new /sc:help command to see a full list of all available commands.
SuperClaude is a meta-programming configuration framework that transforms Claude Code into a structured development platform through behavioral instruction injection and component orchestration. It provides systematic workflow automation with powerful tools and intelligent agents.
This project is not affiliated with or endorsed by Anthropic. Claude Code is a product built and maintained by Anthropic.
⚠️ DO NOT SKIP THIS STEP ⚠️
The SuperClaude plugin modifies your Claude Code MCP configuration. Always backup before installing to ensure you can safely rollback if needed.
# Download and run automated backup script
curl -o /tmp/backup-claude.sh https://raw.githubusercontent.com/SuperClaude-Org/SuperClaude_Plugin/main/scripts/backup-claude-config.sh
chmod +x /tmp/backup-claude.sh
/tmp/backup-claude.sh
✅ Backup complete! Now you can safely install the plugin.
The automated backup script saves:
~/.claude/settings.local.json - Your MCP server configurations~/.claude/CLAUDE.md - Your custom instructions~/.claude/.credentials.json - Your API credentials (if exists).mcp.json - Project-specific MCP config (if exists).claude/ - Project-specific settings (if exists)Backup location: ~/claude-backups/backup-YYYY-MM-DD-HH-MM-SS/
Prefer to backup manually?
# Create backup directory
BACKUP_DIR=~/claude-backups/backup-$(date +%Y-%m-%d-%H-%M-%S)
mkdir -p "$BACKUP_DIR"
# Backup global settings
cp ~/.claude/settings.local.json "$BACKUP_DIR/" 2>/dev/null
cp ~/.claude/CLAUDE.md "$BACKUP_DIR/" 2>/dev/null
cp ~/.claude/.credentials.json "$BACKUP_DIR/" 2>/dev/null
# Backup project settings (if in a project directory)
cp .mcp.json "$BACKUP_DIR/" 2>/dev/null
cp -r .claude "$BACKUP_DIR/" 2>/dev/null
echo "✅ Backup created at: $BACKUP_DIR"
If something goes wrong after installation:
# 1. Uninstall plugin
/plugin uninstall sc@superclaude
# 2. Restore your backup (use your actual backup path)
BACKUP_DIR=~/claude-backups/backup-2025-01-07-14-30-25
cp "$BACKUP_DIR/settings.local.json" ~/.claude/
cp "$BACKUP_DIR/CLAUDE.md" ~/.claude/ 2>/dev/null
cp "$BACKUP_DIR/.credentials.json" ~/.claude/ 2>/dev/null
# 3. Restart Claude Code
pkill -9 claude-code
# Then relaunch Claude Code
Rollback time: ~1 minute