A minimal, liftable memory spine (uid + kind + stable createdAt).
()
| 277 | |
| 278 | /// A minimal, liftable memory spine (uid + kind + stable createdAt). |
| 279 | fn memory_inputs() -> MemLiftInputs { |
| 280 | let frontmatter = serde_json::json!({ |
| 281 | "uid": "01j8zc4r8t", |
| 282 | "memoryKind": "constraint", |
| 283 | "status": "active", |
| 284 | "createdAt": "2026-07-01T00:00:00+00:00", |
| 285 | }) |
| 286 | .as_object() |
| 287 | .unwrap() |
| 288 | .clone(); |
| 289 | MemLiftInputs { |
| 290 | frontmatter, |
| 291 | body: ":::memory\nThe durable fact.\n:::".to_string(), |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | fn attested_node(inputs: &MemLiftInputs) -> (MemoryNode, KeyPair) { |
| 296 | let kp = KeyPair::generate(); |
no test coverage detected