refactor: restructure core modules into context and memory packages

- Move pm_init components to dedicated packages
- context/: PM mode initialization and contracts
- memory/: Reflexion memory system
- Remove deprecated superclaude/core/pm_init/

Breaking change: Import paths updated
- Old: superclaude.core.pm_init.context_contract
- New: superclaude.context.contract

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
kazuki
2025-10-20 03:52:27 +09:00
parent 328a0a016b
commit c5690e4a71
8 changed files with 41 additions and 55 deletions

View File

@@ -0,0 +1,11 @@
"""Learning and Memory Systems
Manages long-term learning from experience:
- Reflexion Memory (mistake learning)
- Metrics collection
- Pattern recognition
"""
from .reflexion import ReflexionMemory, ReflexionEntry
__all__ = ["ReflexionMemory", "ReflexionEntry"]