Files
SuperClaude/SuperClaude-Lite/hooks/shared/__init__.py
NomenAK 1d03832f2d SuperClaude V4 Beta: Major framework restructuring
- Restructured core framework components
- Added new Agents, MCP servers, and Modes documentation
- Introduced SuperClaude-Lite minimal implementation
- Enhanced Commands with session management capabilities
- Added comprehensive Hooks system with Python integration
- Removed legacy setup and profile components
- Updated .gitignore to exclude Tests/, ClaudeDocs/, and .serena/
- Consolidated configuration into SuperClaude/Config/
- Added Templates for consistent component creation

This is the initial commit for the V4 Beta branch containing all recent framework improvements and architectural changes.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-05 13:59:17 +02:00

25 lines
674 B
Python

"""
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'
]