Files
poimen-memory/docs
rock a0cb3f9211 refactor: remove AccessGuard RBAC from MVP, fix http_server startup
- Removed AccessGuard import and initialization (RBAC deferred to Phase 2)
- Removed access_guard field from AppState
- Removed to_rbac_claims, query_result_to_resource_meta RBAC helper functions
- Removed apply_rbac_filter calls from handlers
- Removed all RBAC permission checks (check_project_write_access, etc)
- Fixed apply_rbac_filter reference in query handler
- Server now starts and initializes database schema
- Ready for core ingest/query implementation

Still debugging: Server process exits after schema init (likely during worker startup or handler routing)
2026-09-08 09:29:21 -07:00
..

Memory System Documentation

Phase 7 Complete | 84/84 tasks done


API Documentation

Phase 7 APIs

  • T7_VERSIONING_API.md — Version history, diffs, point-in-time queries

    • GET /memory/entities/{id}/versions
    • GET /memory/entities/{id}/diff?from=v1&to=v2
    • GET /memory/entities/{id}/at?as_of=timestamp
  • T7_RANKING_API.md — Multi-signal ranking (7 signals, 3 profiles)

    • GET /memory/ranking/profiles
    • POST /memory/query with ranking_profile
  • T7_REBUILD_API.md — Deterministic rebuild with checksums

    • POST /memory/rebuild
    • GET /memory/rebuild/status

Operations & SLOs

RUNBOOK_PHASE7.md

  • Incident response procedures
  • Daily health check script
  • Escalation paths

SLO Definitions


Implementation Details



File Structure

docs/
├── README.md (this file)
├── api/
│   ├── T7_VERSIONING_API.md
│   ├── T7_RANKING_API.md
│   └── T7_REBUILD_API.md
├── operations/
│   └── RUNBOOK_PHASE7.md
├── slo/
│   ├── availability.yaml
│   ├── latency.yaml
│   └── consistency.yaml
└── Implementation details
    ├── PHASE_7_TEMPORAL_RAGA_INGEST_DESIGN.md
    ├── TEMPORAL_WORKFLOW_INTEGRATION.md
    └── LLM_INFERENCE_ACTIVITY_INTEGRATION.md

Note: Task board is in poimen-docs/tasks/

Status: All Phase 7 documentation complete and deployment-ready