2025-08-21 19:03:25 +02:00
|
|
|
# SuperClaude Common Issues - Quick Reference 🚀
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-21 19:03:25 +02:00
|
|
|
**2-Minute Problem Solving**: Most frequent issues with instant solutions.
|
2025-08-18 12:45:06 +02:00
|
|
|
|
2025-08-21 19:03:25 +02:00
|
|
|
## Top 5 Quick Fixes (90% of Issues)
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-21 19:03:25 +02:00
|
|
|
### 1. Commands Not Working in Claude Code ⚡
|
2025-08-18 11:58:55 +02:00
|
|
|
```
|
2025-08-21 19:03:25 +02:00
|
|
|
Problem: /sc:brainstorm doesn't work
|
|
|
|
|
Solution: Restart Claude Code completely
|
|
|
|
|
Test: /sc:brainstorm "test" should ask questions
|
2025-08-18 11:58:55 +02:00
|
|
|
```
|
|
|
|
|
|
2025-08-21 19:03:25 +02:00
|
|
|
### 2. Installation Verification
|
2025-08-18 11:58:55 +02:00
|
|
|
```bash
|
2025-08-21 19:03:25 +02:00
|
|
|
python3 -m SuperClaude --version # Should show 4.0.0
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-21 19:03:25 +02:00
|
|
|
# If not working:
|
|
|
|
|
pip install --upgrade SuperClaude
|
|
|
|
|
python3 -m SuperClaude install
|
2025-08-18 11:58:55 +02:00
|
|
|
```
|
|
|
|
|
|
2025-08-21 19:03:25 +02:00
|
|
|
### 3. Permission Issues
|
2025-08-18 11:58:55 +02:00
|
|
|
```bash
|
2025-08-21 19:03:25 +02:00
|
|
|
# Permission denied errors:
|
|
|
|
|
pip install --user SuperClaude
|
|
|
|
|
# Or: sudo chown -R $USER ~/.claude
|
2025-08-18 17:58:39 +02:00
|
|
|
```
|
|
|
|
|
|
2025-08-21 19:03:25 +02:00
|
|
|
### 4. MCP Server Issues
|
2025-08-18 11:58:55 +02:00
|
|
|
```bash
|
2025-08-21 19:03:25 +02:00
|
|
|
/sc:analyze . --no-mcp # Test without MCP servers
|
|
|
|
|
node --version # Check Node.js 16+ if needed
|
2025-08-18 17:58:39 +02:00
|
|
|
```
|
|
|
|
|
|
2025-08-21 19:03:25 +02:00
|
|
|
### 5. Component Missing
|
2025-08-18 11:58:55 +02:00
|
|
|
```bash
|
2025-08-21 19:03:25 +02:00
|
|
|
python3 -m SuperClaude install --components core commands agents modes --force
|
2025-08-18 11:58:55 +02:00
|
|
|
```
|
|
|
|
|
|
2025-08-21 19:03:25 +02:00
|
|
|
## Platform-Specific Issues
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-21 19:03:25 +02:00
|
|
|
**Windows:**
|
2025-08-18 17:58:39 +02:00
|
|
|
```cmd
|
2025-08-21 19:03:25 +02:00
|
|
|
set CLAUDE_CONFIG_DIR=%USERPROFILE%\.claude
|
|
|
|
|
python -m SuperClaude install --install-dir "%CLAUDE_CONFIG_DIR%"
|
2025-08-18 17:58:39 +02:00
|
|
|
```
|
|
|
|
|
|
2025-08-21 19:03:25 +02:00
|
|
|
**macOS:**
|
2025-08-18 11:58:55 +02:00
|
|
|
```bash
|
2025-08-21 19:03:25 +02:00
|
|
|
brew install python3 node
|
|
|
|
|
pip3 install SuperClaude
|
2025-08-18 11:58:55 +02:00
|
|
|
```
|
|
|
|
|
|
2025-08-21 19:03:25 +02:00
|
|
|
**Linux:**
|
|
|
|
|
```bash
|
|
|
|
|
sudo apt install python3 python3-pip nodejs
|
|
|
|
|
pip3 install SuperClaude
|
2025-08-18 17:58:39 +02:00
|
|
|
```
|
|
|
|
|
|
2025-08-21 19:03:25 +02:00
|
|
|
## Verification Checklist
|
|
|
|
|
- [ ] `python3 -m SuperClaude --version` returns 4.0.0
|
|
|
|
|
- [ ] `/sc:brainstorm "test"` works in Claude Code
|
|
|
|
|
- [ ] `SuperClaude install --list-components` shows components
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-21 19:03:25 +02:00
|
|
|
## When Quick Fixes Don't Work
|
|
|
|
|
See [Troubleshooting Guide](troubleshooting.md) for advanced diagnostics.
|