docs(milestone): complete v0.1 foundation

---ci---
phase: 0
milestone: v0.1
status: complete
---/ci---
This commit is contained in:
Praxis CI
2026-08-01 13:32:48 +00:00
parent bcb0118034
commit fbd6602814
91 changed files with 10220 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
"""Praxis SQLite store package — async access layer (D-007)."""
from db.store import (
PraxisStore,
SessionRow,
TurnRow,
HARDCODED_LEARNER_ID,
)
from db.migrate import apply_migrations
__all__ = [
"PraxisStore",
"SessionRow",
"TurnRow",
"HARDCODED_LEARNER_ID",
"apply_migrations",
]