Install
openclaw skills install @kitakitsune0x/memoriaStructured memory system for AI agents. Use when the user wants to store, recall, or search memories, manage session lifecycle (wake/sleep/checkpoint), sync to Notion, or when the user shares important information that should be remembered (facts, decisions, preferences, lessons, commitments, relationships, projects).
openclaw skills install @kitakitsune0x/memoriaSet the vault path so all commands work:
export MEMORIA_VAULT=~/memory
If not set, pass -v ~/memory on every command.
Run at the start and end of every session:
memoria wake # start session, restore context
memoria checkpoint --working-on "<task>" # mid-session save
memoria sleep "<summary>" --next "<next steps>" # end session, write handoff
memoria remember <type> "<title>" --content "<details>"
memoria sync --push # always sync after storing
Types: fact, decision, preference, lesson, commitment, relationship, project
| Signal | Type |
|---|---|
| Human shares personal info (name, location, health, settings) | fact |
| A decision is made with reasoning | decision |
| Human says "I prefer / always / never..." | preference |
| An insight or lesson emerges | lesson |
| A promise, goal, or deadline is set | commitment |
| A person is mentioned with context | relationship |
| An ongoing project is discussed | project |
If in doubt, store it. Better to have a memory you never look up than to forget something.
Listen for these patterns and store immediately:
preferencedecisionlessonfactcommitmentrelationshipprojectmemoria remember fact "Human lives in Tokyo" --content "Mentioned during onboarding"
memoria remember preference "No emojis in code" --content "Explicitly requested"
memoria remember decision "Use Fly.io" --content "Chosen over Vercel for APAC latency"
memoria sync --push
Before making decisions or giving advice, check existing memories:
memoria search "<query>"
memoria store <category> "<title>" --content "<body>" # store in explicit category
memoria list [category] # list documents
memoria get <id> # get specific document
memoria status # vault stats + session state
memoria sync --pull # pull Notion changes to local
One-time configuration:
memoria setup-notion --token <token> --page <page-id>
After setup, always run memoria sync --push after storing memories.