Files
SuperClaude/superclaude/context/__init__.py
kazuki c5690e4a71 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>
2025-10-20 03:52:27 +09:00

13 lines
298 B
Python

"""Project Context Management
Detects and manages project-specific configuration:
- Context Contract (project rules)
- Project structure detection
- Initialization
"""
from .contract import ContextContract
from .init import initialize_context
__all__ = ["ContextContract", "initialize_context"]