Phase 2 build initial

This commit is contained in:
Claude Code
2025-07-30 09:34:16 +10:00
parent 8f19eaab25
commit a6ee31f237
68 changed files with 18055 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
"""
HCFS - Context-Aware Hierarchical Context File System
A virtual filesystem that maps hierarchical paths to context blobs,
enabling AI agents to navigate and manage context at different scopes.
"""
__version__ = "0.1.0"
__author__ = "Tony"
from .core.context_db import ContextDatabase
from .core.filesystem import HCFSFilesystem
from .core.embeddings import EmbeddingManager
from .api.server import ContextAPI
__all__ = [
"ContextDatabase",
"HCFSFilesystem",
"EmbeddingManager",
"ContextAPI",
]