2025-08-21 19:03:25 +02:00
|
|
|
# SuperClaude Common Issues - Quick Reference 🚀
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-22 19:18:44 +02:00
|
|
|
**Problem Solving Guide**: Most frequent issues with practical 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
|
Fix component validation and bump version to 4.0.6 (#292)
* ✨ Enhance documentation with advanced markdown formatting
Major improvements to documentation presentation and usability:
README.md:
- Added centered hero section with framework statistics dashboard
- Created visual support section with donation cards
- Enhanced What's New section with feature grid layout
- Reorganized documentation links into categorized table
- Added professional badges and visual separators
installation.md:
- Centered title with platform badges and quick navigation
- Consolidated 4 installation methods into unified table
- Created visual requirement cards (Required vs Optional)
- Added collapsible troubleshooting sections
- Removed 3 duplicate "What's Next" sections
- Enhanced learning journey with progression tables
quick-start.md:
- Added visual framework architecture flow diagram
- Created component statistics dashboard (21|14|6|6)
- Built comparison table for SuperClaude vs Standard Claude
- Added 4-week learning timeline with milestones
- Enhanced workflow patterns with step-by-step tables
- Created key insights cards explaining framework philosophy
All documents now feature consistent styling with centered titles,
organized tables, emojis for visual scanning, and improved navigation.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
* 🔥 Remove outdated publishing and release instruction files
Cleaned up repository by removing:
- PUBLISHING.md: Outdated publishing guidelines
- RELEASE_INSTRUCTIONS.md: Old release process documentation
These files are no longer needed as the project has evolved
and the processes have been streamlined or moved elsewhere.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
* 🐛 Fix component validation to check metadata file instead of settings.json
Resolves #291 - Validation errors after V4 upgrade
## Changes
- Fixed validation logic to check .superclaude-metadata.json instead of settings.json
- Standardized all component versions to 4.0.4 across the framework
- Fixed agent validation to check for correct filenames (architect vs specialist/engineer)
- Cleaned up metadata file structure for consistency
## Technical Details
The issue was caused by components registering in .superclaude-metadata.json but
validation checking settings.json for component registration. This mismatch caused
false validation errors even though components were properly installed.
## Testing
All components now validate successfully with the corrected logic.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
* 🔖 Bump version to 4.0.6 across entire project
## Summary
Comprehensive version update from 4.0.4 to 4.0.6 with validation fixes
## Changes
- Updated VERSION file, pyproject.toml, and package.json
- Updated all Python __version__ declarations (8 occurrences)
- Updated all component metadata versions (6 components, 25+ occurrences)
- Updated documentation and README version badges (11 files)
- Fixed package.json inconsistency (was 4.0.5)
- Updated legacy backup.py version reference (was 3.0.0)
- Added CHANGELOG entry for version 4.0.6
## Files Modified (26 total)
- Core: VERSION, pyproject.toml, package.json
- Python: SuperClaude/__init__.py, __main__.py, setup/__init__.py, cli/base.py
- Components: core.py, commands.py, agents.py, mcp.py, mcp_docs.py, modes.py
- Docs: README.md, CONTRIBUTING.md, SECURITY.md, installation.md, quick-start.md
- Config: features.json, backup.py, update.py
- User: ~/.claude/.superclaude-metadata.json
## Verification
All version references now consistently show 4.0.6
Historical references in CHANGELOG preserved as intended
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
* 📝 Update README.md installation instructions
---------
Signed-off-by: NomenAK <39598727+NomenAK@users.noreply.github.com>
Co-authored-by: Claude <noreply@anthropic.com>
2025-08-23 12:08:09 +02:00
|
|
|
python3 -m SuperClaude --version # Should show 4.0.6
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-21 19:03:25 +02:00
|
|
|
# If not working:
|
2025-08-22 21:20:12 +02:00
|
|
|
# For pipx users
|
|
|
|
|
pipx upgrade SuperClaude
|
|
|
|
|
|
|
|
|
|
# For pip users
|
2025-08-21 19:03:25 +02:00
|
|
|
pip install --upgrade SuperClaude
|
2025-08-22 21:20:12 +02:00
|
|
|
|
|
|
|
|
# Then reinstall
|
2025-08-21 19:03:25 +02:00
|
|
|
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-22 21:20:12 +02:00
|
|
|
# Permission denied / PEP 668 errors:
|
|
|
|
|
# Option 1: Use pipx (recommended)
|
|
|
|
|
pipx install SuperClaude
|
|
|
|
|
|
|
|
|
|
# Option 2: Use pip with --user
|
2025-08-21 19:03:25 +02:00
|
|
|
pip install --user SuperClaude
|
2025-08-22 21:20:12 +02:00
|
|
|
|
|
|
|
|
# Option 3: Fix permissions
|
|
|
|
|
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
|
Fix component validation and bump version to 4.0.6 (#292)
* ✨ Enhance documentation with advanced markdown formatting
Major improvements to documentation presentation and usability:
README.md:
- Added centered hero section with framework statistics dashboard
- Created visual support section with donation cards
- Enhanced What's New section with feature grid layout
- Reorganized documentation links into categorized table
- Added professional badges and visual separators
installation.md:
- Centered title with platform badges and quick navigation
- Consolidated 4 installation methods into unified table
- Created visual requirement cards (Required vs Optional)
- Added collapsible troubleshooting sections
- Removed 3 duplicate "What's Next" sections
- Enhanced learning journey with progression tables
quick-start.md:
- Added visual framework architecture flow diagram
- Created component statistics dashboard (21|14|6|6)
- Built comparison table for SuperClaude vs Standard Claude
- Added 4-week learning timeline with milestones
- Enhanced workflow patterns with step-by-step tables
- Created key insights cards explaining framework philosophy
All documents now feature consistent styling with centered titles,
organized tables, emojis for visual scanning, and improved navigation.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
* 🔥 Remove outdated publishing and release instruction files
Cleaned up repository by removing:
- PUBLISHING.md: Outdated publishing guidelines
- RELEASE_INSTRUCTIONS.md: Old release process documentation
These files are no longer needed as the project has evolved
and the processes have been streamlined or moved elsewhere.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
* 🐛 Fix component validation to check metadata file instead of settings.json
Resolves #291 - Validation errors after V4 upgrade
## Changes
- Fixed validation logic to check .superclaude-metadata.json instead of settings.json
- Standardized all component versions to 4.0.4 across the framework
- Fixed agent validation to check for correct filenames (architect vs specialist/engineer)
- Cleaned up metadata file structure for consistency
## Technical Details
The issue was caused by components registering in .superclaude-metadata.json but
validation checking settings.json for component registration. This mismatch caused
false validation errors even though components were properly installed.
## Testing
All components now validate successfully with the corrected logic.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
* 🔖 Bump version to 4.0.6 across entire project
## Summary
Comprehensive version update from 4.0.4 to 4.0.6 with validation fixes
## Changes
- Updated VERSION file, pyproject.toml, and package.json
- Updated all Python __version__ declarations (8 occurrences)
- Updated all component metadata versions (6 components, 25+ occurrences)
- Updated documentation and README version badges (11 files)
- Fixed package.json inconsistency (was 4.0.5)
- Updated legacy backup.py version reference (was 3.0.0)
- Added CHANGELOG entry for version 4.0.6
## Files Modified (26 total)
- Core: VERSION, pyproject.toml, package.json
- Python: SuperClaude/__init__.py, __main__.py, setup/__init__.py, cli/base.py
- Components: core.py, commands.py, agents.py, mcp.py, mcp_docs.py, modes.py
- Docs: README.md, CONTRIBUTING.md, SECURITY.md, installation.md, quick-start.md
- Config: features.json, backup.py, update.py
- User: ~/.claude/.superclaude-metadata.json
## Verification
All version references now consistently show 4.0.6
Historical references in CHANGELOG preserved as intended
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
* 📝 Update README.md installation instructions
---------
Signed-off-by: NomenAK <39598727+NomenAK@users.noreply.github.com>
Co-authored-by: Claude <noreply@anthropic.com>
2025-08-23 12:08:09 +02:00
|
|
|
- [ ] `python3 -m SuperClaude --version` returns 4.0.6
|
2025-08-21 19:03:25 +02:00
|
|
|
- [ ] `/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.
|