NomenAK d87bd3dc35 Hide Hooks installation from CLI until implementation is ready
- 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>
2025-08-14 20:02:08 +02:00

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
]