2025-08-14 08:56:04 +05:30
|
|
|
"""Component implementations for SuperClaude installation system"""
|
|
|
|
|
|
|
|
|
|
from .core import CoreComponent
|
|
|
|
|
from .commands import CommandsComponent
|
|
|
|
|
from .mcp import MCPComponent
|
2025-08-14 20:12:59 +02:00
|
|
|
from .agents import AgentsComponent
|
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>
2025-08-14 20:35:19 +02:00
|
|
|
from .modes import ModesComponent
|
|
|
|
|
from .mcp_docs import MCPDocsComponent
|
2025-08-14 08:56:04 +05:30
|
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
|
'CoreComponent',
|
|
|
|
|
'CommandsComponent',
|
|
|
|
|
'MCPComponent',
|
2025-08-14 20:12:59 +02:00
|
|
|
'AgentsComponent',
|
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>
2025-08-14 20:35:19 +02:00
|
|
|
'ModesComponent',
|
|
|
|
|
'MCPDocsComponent'
|
2025-08-14 08:56:04 +05:30
|
|
|
]
|