Loading...
Loading...
Persistent key-value memory storage for agents. Store and recall information across conversations and sessions. Use when you need the agent to remember facts, preferences, or data between interactions.
npx skill4agent add winsorllc/upgraded-carnival memory-persist~/.thepopebot/memory.json$HOME/.thepopebot/memory.json// Store a memory
memory_store('user_name', 'Alice')
// Returns: "Stored: user_name"
// Recall a memory
memory_recall('user')
// Returns: {"user_name": "Alice"}
// Search by value
memory_recall('Alice')
// Returns: {"user_name": "Alice"}
// Delete a memory
memory_delete('user_name')
// Returns: "Deleted: user_name"
// List all memories
memory_list()
// Returns: ["user_name", "favorite_color", ...]
// Clear all memories
memory_clear()
// Returns: "Cleared all memories"