Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Orchestrate full development workflows in Claude Code using /sc slash commands and 23 specialized AI agents to implement features, analyze code quality/security/performance, generate docs/architecture/tests, automate git/build/deploy, conduct research, and manage projects with MCP server persistence for cross-session context.
npx claudepluginhub superclaude-org/superclaude_plugin --plugin scThis directory contains slash commands that are installed to `~/.claude/commands/sc/` when users run `superclaude install`.
name: sc:agent
Comprehensive code analysis across quality, security, performance, and architecture domains
Interactive requirements discovery through Socratic dialogue and systematic exploration
Build, compile, and package projects with intelligent error handling and optimization
4つのContext Engineeringエージェントの詳細仕様を作成しました:
このディレクトリには、SuperClaudeフレームワークのコンテキストエンジニアリング機能を実装する4つの新エージェントが含まれています。
Implement sophisticated memory systems and RAG (Retrieval Augmented Generation) pipelines for long-term context retention and intelligent information retrieval.
Automatically generate and maintain comprehensive technical documentation, tutorials, and knowledge bases to improve transparency and developer onboarding.
Implement systematic evaluation pipeline to measure, track, and optimize SuperClaude's performance across all dimensions using Context Engineering principles.
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Claude Code workflow patterns: prompting, CLAUDE.md maintenance, multi-agent orchestration
MCP server development helper with tool and resource scaffolding
Multi-agent /workflow development pipeline (planner → plan-review → coder → code-review) with typed handoff contracts, lifecycle hooks, and MCP servers.
Development workflow skills, commands, and hooks from claude-toolbox
High-intelligence Claude Code copilot with deep code reasoning, evidence-driven planning, orchestration-first execution, model routing, context budgeting, CI/CD integration, enterprise security, plugin development, prompt engineering, performance profiling, agent teams, channels (event-driven autonomy with CI webhook, mobile approval relay, Discord bridge, and fakechat dev profile), interactive tutorials, LSP integration, security-hardened hook script library, MCP Prompts coverage, common workflow packs, runtime selection guide, computer-use patterns, checkpointing, scheduled-task blueprints, repo bootstrap scanner, hook policy engine (8 installable packs), layered memory deployment, role-based subagent packs (implementer, debugger, migration-lead, dependency-auditor, release-coordinator), 5 agent-team topology kits, autonomy operating mode (4 profiles + 3 gates), and a queryable 15-tool MCP documentation server with autonomy advisor.
Analyze codebases and recommend tailored Claude Code automations such as hooks, skills, MCP servers, and subagents.
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