mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-26 14:18:59 +00:00
- Commented out HooksComponent import and export in __init__.py - Removed hooks from --components all installation list - Set enabled=false in features.json configuration - Updated descriptions to indicate "NOT YET IMPLEMENTED" - Code remains intact for future re-enablement The Hooks system is not yet fully implemented, so hiding it from users prevents confusion while preserving the framework for future use. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
389 B
Python
13 lines
389 B
Python
"""Component implementations for SuperClaude installation system"""
|
|
|
|
from .core import CoreComponent
|
|
from .commands import CommandsComponent
|
|
from .mcp import MCPComponent
|
|
# from .hooks import HooksComponent # Commented out - not yet implemented
|
|
|
|
__all__ = [
|
|
'CoreComponent',
|
|
'CommandsComponent',
|
|
'MCPComponent',
|
|
# 'HooksComponent' # Commented out - not yet implemented
|
|
] |