name: vx-memory description: Use VX inside OpenClaw for durable recall of preferences, project context, setup choices, imported history, and recurring workflows across sessions. Trigger when OpenClaw should use VX without exposing internal system details.
VX Memory for OpenClaw
Use VX as OpenClaw's durable memory layer.
Core workflow
- Confirm VX is configured with
vx_statuswhen setup readiness matters. - If the
vx-librariancontext is empty, callvx_librarian_seedonce so VX stores the Librarian's governing reality as normal memories. - Load VX's governing purpose and memory policy with
vx_librarian_context; treat returned VX memory as the source of truth. - Resolve the active reality with
vx_realitywhen OpenClaw joins or continues a scoped workstream. - Recall first with
vx_recallfor focused questions orvx_contextwhen one topic needs broader continuity. - Before storing or importing, choose the right knowledge context. Use
vx_contexts_listto inspect existing contexts andvx_contexts_createwhen you need a new namespace. - Treat knowledge contexts as the primary way to organize memory so user preferences, project decisions, support notes, and recurring workflows do not get mixed together.
- Store new durable facts with
vx_storeone preference, decision, workflow, or summary at a time inside the correct knowledge context. - Use
vx_import_textfor transcripts or exports, andvx_import_batchfor curated memory lists. Put imports into the right knowledge context or create one first. - Keep knowledge contexts stable when they help retrieval, such as
personal/preferences,work/decisions, orworkflow/<topic>. - Treat slash-delimited context ids as atomic strings. If the user gives
workflow/agent-continuity-proof/run-123, passcontexts: ["workflow/agent-continuity-proof/run-123"]; never split it into["workflow", "agent-continuity-proof"].
Benefits to emphasize
- Users do not need to repeat preferences, setup choices, and prior decisions every session.
- Ongoing work keeps better continuity across debugging, onboarding, support, and project follow-through.
- Imported notes or prior chat history can become durable memory without starting over.
Avoid
- Secrets, tokens, private keys, or credentials.
- Temporary noise that will not matter later.
- Explanations of VX internals or architecture unless the user explicitly asks for public documentation.