Revert "feat: comprehensive framework improvements (#447)" (#453)

This reverts commit 00706f0ea9.
This commit is contained in:
Mithun Gowda B
2025-10-21 09:48:41 +05:30
committed by GitHub
parent 1aa4039f9c
commit faa53f27da
52 changed files with 6488 additions and 3278 deletions

View File

@@ -1,24 +1,15 @@
"""
Component Directory
"""Component implementations for SuperClaude installation system"""
Each module defines an installable responsibility unit:
- knowledge_base: Framework knowledge initialization
- behavior_modes: Execution mode definitions
- agent_personas: AI agent personality definitions
- slash_commands: CLI command registration
- mcp_integration: External tool integration via MCP
"""
from .knowledge_base import KnowledgeBaseComponent
from .behavior_modes import BehaviorModesComponent
from .agent_personas import AgentPersonasComponent
from .slash_commands import SlashCommandsComponent
from .mcp_integration import MCPIntegrationComponent
from .framework_docs import FrameworkDocsComponent
from .commands import CommandsComponent
from .mcp import MCPComponent
from .agents import AgentsComponent
from .modes import ModesComponent
__all__ = [
"KnowledgeBaseComponent",
"BehaviorModesComponent",
"AgentPersonasComponent",
"SlashCommandsComponent",
"MCPIntegrationComponent",
"FrameworkDocsComponent",
"CommandsComponent",
"MCPComponent",
"AgentsComponent",
"ModesComponent",
]