MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / memory_inputs

Function memory_inputs

atomic-cli/src/commands/memory/bridge.rs:279–293  ·  view source on GitHub ↗

A minimal, liftable memory spine (uid + kind + stable createdAt).

()

Source from the content-addressed store, hash-verified

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();

Callers 1

repo_with_memoryFunction · 0.85

Calls 2

cloneMethod · 0.45
unwrapMethod · 0.45

Tested by

no test coverage detected