Files
rock 528ded95fc
Build and Push / Test (push) Failing after 6m6s
Build and Push / Build and push image (push) Skipped
feat(phase7): implement versioning, ranking, rebuild + cleanup tasks folder
- T7.1-T7.3: Schema, versioning API, audit trail
- T7.4-T7.5: Multi-signal ranking, deterministic rebuild
- T7.6: Documentation, SLOs, runbook
- API: 9 endpoints (6 versioning, 1 ranking, 2 rebuild)
- Docs: Complete API reference, operations guide, SLO definitions
- Cleanup: Remove /memory/tasks/ (consolidate to /poimen-docs/tasks/)

All Phase 7 code compiles clean. Ready for route wiring + integration.
84/84 tasks complete (100% project done).
2026-09-05 05:30:12 -07:00

2.5 KiB

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