mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
Comprehensive restoration of all agents, modes, MCP integrations, and documentation.
## 🤖 Agents Restored (20 total)
Added 17 new agent definitions to existing 3:
- backend-architect, business-panel-experts, deep-research-agent
- devops-architect, frontend-architect, learning-guide
- performance-engineer, pm-agent, python-expert
- quality-engineer, refactoring-expert, requirements-analyst
- root-cause-analyst, security-engineer, socratic-mentor
- system-architect, technical-writer
## 🎨 Behavioral Modes (7)
- MODE_Brainstorming - Multi-perspective ideation
- MODE_Business_Panel - Executive strategic analysis
- MODE_DeepResearch - Autonomous research
- MODE_Introspection - Meta-cognitive analysis
- MODE_Orchestration - Tool coordination
- MODE_Task_Management - Systematic organization
- MODE_Token_Efficiency - Context optimization
## 🔌 MCP Server Integration (8)
Documentation and configs for:
- Tavily (web search)
- Serena (session persistence)
- Sequential (token-efficient reasoning)
- Context7 (documentation lookup)
- Playwright (browser automation)
- Magic (UI components)
- Morphllm (model transformation)
- Chrome DevTools (performance)
## 📚 Core Documentation (6)
- PRINCIPLES.md, RULES.md, FLAGS.md
- RESEARCH_CONFIG.md
- BUSINESS_PANEL_EXAMPLES.md, BUSINESS_SYMBOLS.md
## 📖 Documentation Restored (152 files)
- User-Guide (en, jp, kr, zh) - 24 files
- Developer-Guide - 5 files
- Development docs - 10 files
- Reference docs - 10 files
- Getting-Started - 2 files
- Plus examples and templates
## 📦 Package Configuration
Updated pyproject.toml and MANIFEST.in to include:
- modes/**/*.md
- mcp/**/*.md, **/*.json
- core/**/*.md
- examples/**/*.md
- Comprehensive docs in distribution
## 📁 Directory Structure
plugins/superclaude/ and src/superclaude/:
- agents/ (20 files)
- modes/ (7 files)
- mcp/ (8 docs + 8 configs)
- core/ (6 files)
- examples/ (workflow examples)
docs/:
- 152 markdown files
- Multi-language support (en, jp, kr, zh)
- Comprehensive guides and references
## 📊 Statistics
- Commands: 30
- Agents: 20
- Modes: 7
- MCP Servers: 8
- Documentation Files: 152
- Total Resource Files: 200+
Created docs/reference/comprehensive-features.md with complete inventory.
Source: commit d4a17fc
Total changes: 150+ files added/modified
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
9.9 KiB
9.9 KiB
📦 SuperClaude Installation Guide
Transform Claude Code with 21 Commands, 14 Agents & 6 MCP Servers
Quick Install • Requirements • Methods • Verify • Troubleshoot
⚡ Quick Installation
Choose Your Preferred Method
| Method | Command | Platform | Best For |
|---|---|---|---|
| 🐍 pipx | pipx install SuperClaude && SuperClaude install |
Linux/macOS | ✅ Recommended - Isolated environment |
| 📦 pip | pip install SuperClaude && SuperClaude install |
All | Traditional Python setups |
| 🌐 npm | npm install -g @bifrost_inc/superclaude && superclaude install |
All | Node.js developers |
| 🔧 Dev | git clone ... && pip install -e ".[dev]" |
All | Contributors & developers |
📋 Requirements
✅ Required
|
💡 Optional
|
🔍 Quick System Check
# Run this to check all requirements at once
python3 --version && echo "✅ Python OK" || echo "❌ Python missing"
claude --version && echo "✅ Claude Code OK" || echo "❌ Claude Code missing"
node --version 2>/dev/null && echo "✅ Node.js OK (optional)" || echo "⚠️ Node.js missing (optional)"
git --version 2>/dev/null && echo "✅ Git OK (optional)" || echo "⚠️ Git missing (optional)"
🚀 Installation Methods
Detailed Installation Instructions
Method 1: pipx (Recommended)
|
✅ Advantages:
📍 Best for:
|
Method 2: pip (Traditional)
|
✅ Advantages:
📍 Best for:
|
Method 3: npm (Cross-platform)
|
✅ Advantages:
📍 Best for:
|
Method 4: Development Installation
|
✅ Advantages:
📍 Best for:
|
🎛️ Installation Options
Customize Your Installation
| Option | Command | Description |
|---|---|---|
| Interactive | SuperClaude install |
Guided setup with prompts |
| Specific Components | SuperClaude install --components core mcp modes |
Install only what you need |
| Preview Mode | SuperClaude install --dry-run |
See what will be installed |
| Force Install | SuperClaude install --force --yes |
Skip all confirmations |
| List Components | SuperClaude install --list-components |
View available components |
✅ Verification
Confirm Successful Installation
Step 1: Check Installation
# Verify SuperClaude version
python3 -m SuperClaude --version
# Expected: SuperClaude 4.1.5
# List installed components
SuperClaude install --list-components
# Expected: List of available components
Step 2: Test in Claude Code
# Open Claude Code and try these commands:
/sc:brainstorm "test project" # Should trigger discovery questions
/sc:analyze README.md # Should provide structured analysis
@agent-security "review code" # Should activate security specialist
Step 3: What's Installed
| Location | Contents | Size |
|---|---|---|
~/.claude/ |
Framework files | ~50MB |
~/.claude/CLAUDE.md |
Main entry point | ~2KB |
~/.claude/*.md |
Behavioral instructions | ~200KB |
~/.claude/claude-code-settings.json |
MCP configurations | ~5KB |
🛠️ Management
| 📦 Update | 💾 Backup | 🗑️ Uninstall |
|---|---|---|
|
|
|
🔧 Troubleshooting
❌ PEP 668 Error (Python Package Management)
This error occurs on systems with externally managed Python environments.
Solutions (in order of preference):
# Option 1: Use pipx (Recommended)
pipx install SuperClaude
# Option 2: User installation
pip install --user SuperClaude
# Option 3: Virtual environment
python3 -m venv superclaude-env
source superclaude-env/bin/activate # Linux/macOS
# or
superclaude-env\Scripts\activate # Windows
pip install SuperClaude
# Option 4: Force (use with caution)
pip install --break-system-packages SuperClaude
❌ Command Not Found
If SuperClaude command is not found after installation:
# Check if package is installed
python3 -m pip show SuperClaude
# Run using Python module
python3 -m SuperClaude install
# Add to PATH (if using --user)
export PATH="$HOME/.local/bin:$PATH"
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc # Linux
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc # macOS
❌ Claude Code Not Found
If Claude Code is not installed or not in PATH:
- Download from https://claude.ai/code
- Install following platform instructions
- Verify with:
claude --version - Restart terminal after installation
❌ Permission Denied
For permission errors during installation:
# Use user installation
pip install --user SuperClaude
# Or use sudo (not recommended)
sudo pip install SuperClaude
# Better: use pipx
pipx install SuperClaude
❌ Missing Python or pip
Linux (Ubuntu/Debian):
sudo apt update
sudo apt install python3 python3-pip python3-venv
macOS:
# Install Homebrew first if needed
brew install python3
Windows:
- Download from python.org
- Check "Add Python to PATH" during installation
- Restart terminal after installation
📚 Next Steps
Your Learning Journey
| 🌱 Start Here | 🌿 Expand Skills | 🌲 Master Framework |
|---|---|---|
|
First Week:
|
Week 2-3: |
Advanced: |