🚀 Generated with Claude Code - Project plan and architecture documentation - Python package structure with core modules - API design and basic usage examples - Development environment configuration - Literature review and research foundation Ready for Phase 1 implementation. Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
272 B
Python
13 lines
272 B
Python
"""
|
|
HCFS API module - Agent-facing APIs for context navigation and manipulation.
|
|
"""
|
|
|
|
from .context_api import ContextAPI
|
|
from .models import ContextBlob, ContextPath, ContextQuery
|
|
|
|
__all__ = [
|
|
"ContextAPI",
|
|
"ContextBlob",
|
|
"ContextPath",
|
|
"ContextQuery",
|
|
] |