✨ Features: - 🧠 Shadow learner that builds intelligence from command patterns - 🛡️ Smart command validation with safety checks - 💾 Automatic context monitoring and backup system - 🔄 Session continuity across Claude restarts 📚 Documentation: - Complete Diátaxis-organized documentation - Learning-oriented tutorial for getting started - Task-oriented how-to guides for specific problems - Information-oriented reference for quick lookup - Understanding-oriented explanations of architecture 🚀 Installation: - One-command installation script - Bootstrap prompt for installation via Claude - Cross-platform compatibility - Comprehensive testing suite 🎯 Ready for real-world use and community feedback! 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
21 lines
496 B
Python
21 lines
496 B
Python
"""Claude Code Hooks System - Core Library"""
|
|
|
|
__version__ = "1.0.0"
|
|
__author__ = "Claude Code Hooks Contributors"
|
|
|
|
from .models import *
|
|
from .shadow_learner import ShadowLearner
|
|
from .context_monitor import ContextMonitor
|
|
from .backup_manager import BackupManager
|
|
from .session_state import SessionStateManager
|
|
|
|
__all__ = [
|
|
"ShadowLearner",
|
|
"ContextMonitor",
|
|
"BackupManager",
|
|
"SessionStateManager",
|
|
"Pattern",
|
|
"ToolExecution",
|
|
"HookResult",
|
|
"ValidationResult"
|
|
] |