mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
🚨 Fix major hallucinations in SuperClaude documentation
CRITICAL FIXES: - Remove all references to non-existent 'SuperClaude status' command - Remove all references to non-existent 'SuperClaude diagnose' standalone command - Remove all references to non-existent 'SuperClaude test-mcp' command - Update diagnose references to use correct 'SuperClaude install --diagnose' - Fix python help command references to use correct syntax CONTEXT: SuperClaude is a context-oriented framework with .md instruction files, not an executable with extensive CLI commands. Only Python installer supports: install, update, uninstall, backup operations. VERIFIED COMMANDS: ✅ python3 -m SuperClaude --help (works) ✅ SuperClaude install --diagnose (works) ✅ SuperClaude install --list-components (works) ❌ SuperClaude status (does not exist) ❌ SuperClaude diagnose (does not exist) ❌ SuperClaude test-mcp (does not exist) FILES FIXED: - commands.md: status → config checks, diagnose → install --diagnose - flags.md: status → config checks, help flags → help - agents.md: diagnose → install --diagnose - mcp-servers.md: status → config checks, test-mcp → /sc: commands - modes.md: diagnose → install --diagnose - session-management.md: status → list-components 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -19,8 +19,8 @@ SuperClaude --version
|
||||
# Expected: SuperClaude Framework v4.0+
|
||||
|
||||
# Check MCP server connectivity
|
||||
SuperClaude status --mcp
|
||||
# Expected: At least context7 and sequential-thinking connected
|
||||
SuperClaude install --list-components | grep mcp
|
||||
# Expected: Shows installed MCP components
|
||||
```
|
||||
|
||||
### 💬 Claude Code Testing (Type in Claude Code Chat)
|
||||
@@ -499,7 +499,7 @@ ps aux | grep SuperClaude # Check for hung processes
|
||||
```bash
|
||||
# Problem: MCP servers not responding
|
||||
# Quick Fix: Verify server status and restart
|
||||
SuperClaude status --mcp # Check all servers
|
||||
ls ~/.claude/.claude.json # Check MCP config exists
|
||||
/sc:command --no-mcp # Bypass MCP temporarily
|
||||
node --version # Verify Node.js v16+
|
||||
npm cache clean --force # Clear NPM cache
|
||||
@@ -546,7 +546,7 @@ killall node # Reset MCP servers
|
||||
**Level 2: Detailed Help (5-15 min)**
|
||||
```bash
|
||||
# Comprehensive diagnostics
|
||||
SuperClaude diagnose --verbose
|
||||
SuperClaude install --diagnose
|
||||
/sc:help troubleshoot
|
||||
cat ~/.claude/logs/superclaude.log | tail -50
|
||||
```
|
||||
@@ -555,7 +555,7 @@ cat ~/.claude/logs/superclaude.log | tail -50
|
||||
**Level 3: Expert Support (30+ min)**
|
||||
```bash
|
||||
# Deep system analysis
|
||||
SuperClaude diagnose --full-system
|
||||
SuperClaude install --diagnose
|
||||
strace -e trace=file /sc:command 2>&1 | grep ENOENT
|
||||
lsof | grep SuperClaude
|
||||
# Check GitHub Issues for known problems
|
||||
|
||||
Reference in New Issue
Block a user