Implement two-stage installation with simplified MCP configuration

- Stage 1: MCP server selection (Context7, Sequential, Magic, Playwright, Serena, Morphllm)
- Stage 2: Framework components (Core, Modes, Commands, Agents, MCP Docs)

Major Changes:
- Created MCP config snippets in SuperClaude/MCP/configs/ for JSON-based configuration
- Simplified MCPComponent to modify .claude.json instead of npm/subprocess installation
- Added ModesComponent for behavioral modes (Brainstorming, Introspection, etc.)
- Added MCPDocsComponent for dynamic MCP documentation installation
- Completely removed Hooks component (deleted hooks.py, updated all references)
- Implemented two-stage interactive installation flow
- Updated profiles and configuration files

Benefits:
- Much simpler and more reliable MCP configuration
- Clear separation between server setup and documentation
- Auto-selection of MCP docs based on server choices
- User-friendly two-stage selection process

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
NomenAK
2025-08-14 20:35:19 +02:00
parent dc1c7f2e1b
commit 0e71f29598
15 changed files with 823 additions and 823 deletions

View File

@@ -20,21 +20,30 @@
},
"mcp": {
"name": "mcp",
"version": "3.0.0",
"description": "MCP server integration (Context7, Sequential, Magic, Playwright, Morphllm, Serena)",
"version": "4.0.0",
"description": "MCP server configuration management via .claude.json",
"category": "integration",
"dependencies": ["core"],
"enabled": true,
"required_tools": ["node", "claude_cli"]
"required_tools": []
},
"serena": {
"name": "serena",
"version": "3.0.0",
"description": "Semantic code analysis and intelligent editing with project-aware context management",
"category": "integration",
"dependencies": ["core", "mcp"],
"modes": {
"name": "modes",
"version": "4.0.0",
"description": "SuperClaude behavioral modes (Brainstorming, Introspection, Task Management, Token Efficiency)",
"category": "modes",
"dependencies": ["core"],
"enabled": true,
"required_tools": ["uvx", "python3", "claude_cli"]
"required_tools": []
},
"mcp_docs": {
"name": "mcp_docs",
"version": "4.0.0",
"description": "MCP server documentation and usage guides",
"category": "documentation",
"dependencies": ["core"],
"enabled": true,
"required_tools": []
},
"agents": {
"name": "agents",
@@ -44,15 +53,6 @@
"dependencies": ["core"],
"enabled": true,
"required_tools": []
},
"hooks": {
"name": "hooks",
"version": "2.0.0",
"description": "Enhanced Task Management System - Hook Infrastructure (NOT YET IMPLEMENTED)",
"category": "integration",
"dependencies": ["core"],
"enabled": false,
"required_tools": ["python3"]
}
}
}