mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
refactor: Complete V4 Beta framework restructuring
Major reorganization of SuperClaude V4 Beta directories: - Moved SuperClaude-Lite content to Framework-Hooks/ - Renamed SuperClaude/ directories to Framework/ for clarity - Created separate Framework-Lite/ for lightweight variant - Consolidated hooks system under Framework-Hooks/ This restructuring aligns with the V4 Beta architecture: - Framework/: Full framework with all features - Framework-Lite/: Lightweight variant - Framework-Hooks/: Hooks system implementation Part of SuperClaude V4 Beta development roadmap. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
25
Framework-Hooks/hooks/shared/__init__.py
Normal file
25
Framework-Hooks/hooks/shared/__init__.py
Normal file
@@ -0,0 +1,25 @@
|
||||
"""
|
||||
SuperClaude-Lite Shared Infrastructure
|
||||
|
||||
Core components for the executable SuperClaude intelligence framework.
|
||||
Provides shared functionality across all 7 Claude Code hooks.
|
||||
"""
|
||||
|
||||
__version__ = "1.0.0"
|
||||
__author__ = "SuperClaude Framework"
|
||||
|
||||
from .yaml_loader import UnifiedConfigLoader
|
||||
from .framework_logic import FrameworkLogic
|
||||
from .pattern_detection import PatternDetector
|
||||
from .mcp_intelligence import MCPIntelligence
|
||||
from .compression_engine import CompressionEngine
|
||||
from .learning_engine import LearningEngine
|
||||
|
||||
__all__ = [
|
||||
'UnifiedConfigLoader',
|
||||
'FrameworkLogic',
|
||||
'PatternDetector',
|
||||
'MCPIntelligence',
|
||||
'CompressionEngine',
|
||||
'LearningEngine'
|
||||
]
|
||||
Reference in New Issue
Block a user