Give an agent durable memory that survives a process restart, then recall and condense it later.
Write a fact or decision to a namespaced key that outlives this session.
store_memory({"namespace": "example", "key": "example-key", "value": "example"})Pull back relevant memories by query in a later session.
recall_memories({"handle": "my-agent", "query": "wingman protocol"})Condense a namespace of memories into a short summary.
summarize_memory({"handle": "my-agent"})