mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
13 lines
298 B
Python
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"]
|