Agentic Memory substrate for Kyma.
Memory is stored as ordinary Kyma columnar tables (memory_nodes /
memory_edges) registered as the memory graph, so it is first-class
queryable (run_sql/run_kql/Discover) and renders in the unified
GraphView. Embeddings are a FixedSizeList<Float32> column searched via the
platform cosine_distance UDF. Storage is append-only; mutations write a new
version and recall dedups to the latest by updated_at.
See docs/superpowers/specs/2026-05-31-agentic-memory-design.md (M1).