clawvault-memory
Durable-memory + self-improving workflow for the ClawVault plugin. Activate whenever the user asks you to remember or recall, when a fact is worth keeping, OR when something fails,…
David Keane
@davidtkeane
Install
$ openclaw skills install @davidtkeane/clawvault-memoryClawVault Memory Skill 🐘
ClawVault is a persistent SQLite + FTS5 memory. This skill is the discipline for using it well: an agent that searches before it answers, verifies before it saves, and never lets a made-up "fact" into long-term memory.
Requires the ClawVault plugin (
openclaw plugins install clawhub:clawvaultor from GitHub), which provides theclawvault_*tools this skill drives.🔒 Privacy: ClawVault stores memories in a local SQLite file — the stored data never leaves the machine (the plugin makes no network calls). Verifying a fact may use the agent's own web-search/fetch tools, which is separate from ClawVault's storage. Memory persists across sessions, so if the user shares something sensitive, tell them memory is on — and don't save secrets, credentials, or personal data unless the user explicitly asks you to.
When to activate
- The user says "remember this", "save that", "note that", or "don't forget…"
- The user asks "what did we…", "what do you know about…", "did we already…"
- You learn a durable fact, decision, or preference worth keeping across sessions
- You're about to state a fact you're not certain of
- A command, tool, or API fails — capture the error + the fix
- The user corrects you ("No, that's wrong…", "Actually…") or rejects your work
- You discover a better approach, or a requested capability doesn't exist
- Before a major task — review relevant lessons first (
clawvault_search)
Write before you respond (durability)
When the user states something worth keeping — a preference, decision, deadline, fact, or correction — save it to ClawVault before you write your reply, not after. If the session crashes or compacts mid-turn, the memory is already safe. The order is: recall → write → respond.
Answer first, save quietly. Your reply must contain the actual answer to what the user asked — never just a save receipt like "Saved that to ClawVault." Do the save in the background, then answer normally. Don't narrate every write or announce "I've saved that"; only mention a save when explicitly confirming an important decision the user asked you to record. A memory saved but a question left unanswered is a failed turn.
The workflow
1. Search before you answer
Before answering a factual question about past work, the user, or this system, call
clawvault_search first. Don't guess what you may already have stored.
clawvault_search({ query: "exo qwen models openclaw" })
2. Verify before you save
Only save what you have actually checked. Prefer ground truth over memory: run the command, read the file, query the DB, or check the internet. Then save with a source and verified: true.
clawvault_save({
content: "exo serves Qwen models to OpenClaw on 127.0.0.1:52415",
memory_type: "fact",
source: "curl http://127.0.0.1:52415/v1/models",
verified: true
})
If you could not verify it, save it as a question to confirm — never as truth:
clawvault_save({ content: "…", memory_type: "unverified" })
⚠️ Reciting from your own memory/training is NOT verification. Set
verified: trueonly if you actually ran a tool, read a file, queried the DB, or fetched a source this turn. If you're answering from what you already "know" — even a fact you're highly confident about (a version number, a distance, an API detail) — useverified: falseandmemory_type: "unverified". "I'm confident" is not "I checked." A confident recollection saved asverifiedis exactly the hallucination this skill exists to prevent. (The ClawVault plugin also auto-downgradesverified:trueto unverified whensourceshows no evidence of a real check — so put the actual command/URL/file insource.)
3. Don't repeat yourself
clawvault_save refuses a near-duplicate and returns the existing id. Don't force a
copy — update or consolidate instead.
4. Consolidate when memory gets noisy
Use clawvault_consolidate to gather related memories on a topic, distil them into one
durable insight, then save it with supersedes:[ids] to soft-retire the raw rows.
clawvault_consolidate({ topic: "clawvault deployment" })
// …synthesize the returned cluster, then:
clawvault_save({ content: "<synthesis>", memory_type: "insight", verified: true, supersedes: [9,10,11] })
Learn from your mistakes (the self-improving loop)
When something fails or you're corrected, don't just fix it — remember the lesson so it never happens twice.
1. Capture the lesson. Save it with a matching memory_type and a stable pattern-key as the first keyword (so the same problem clusters even when worded differently):
clawvault_save({
content: "npm install failed: node not on PATH in a non-login shell. Fix: run via `zsh -lc`.",
memory_type: "lesson", // or "error" | "correction"
keywords: "shell.node-not-found,npm,path", // first keyword = stable pattern-key
importance: 12,
source: "observed on this machine",
verified: true
})
Use memory_type: error (something broke), correction (the user fixed you), lesson (a better way found).
2. Detect recurrence → promote. Before saving, clawvault_search the pattern-key. If the lesson already exists, it recurred — promote it: save a sharpened version with higher importance and supersedes:[oldId]. Recurring pain earns higher importance.
3. Graduate proven lessons. When a lesson keeps mattering, raise its importance so it surfaces first in recall. If it's important enough to load every session, suggest to the user that they add it to their AGENTS.md — do not edit instruction files yourself. Auto-modifying always-loaded guidance is a prompt-injection risk (an attacker-supplied "lesson" could become permanent instructions); that decision belongs to the user.
4. Reflect after real work. When a task completes, log a short reflection:
clawvault_save({ content: "CONTEXT: <task>. REFLECTION: <what happened>. LESSON: <do differently next time>.", memory_type: "reflection", importance: 8, verified: true })
5. Review before you start. Before a major or repeated task, clawvault_search prior lessons/errors on that topic so you don't repeat a known mistake.
The rules (verify-before-save)
- Never present a guess as a fact. If unchecked, say "I'm not certain — let me verify."
- Prefer ground truth (run/read/fetch) over your own memory.
- Record the source on every saved fact. A memory with no source is a hypothesis.
- Only verified facts become memories; unverified →
memory_type: "unverified". - Tell-vs-do: if you claim you saved something, verify it actually landed. Never claim, always check.
The 3-question test
Before stating or saving any claim: (1) Where did I learn this? (2) Can I check it cheaply now? (3) What would prove me wrong? If the honest answer to #1 is "it just feels right" — stop and verify.
Tools this skill uses
clawvault_save— store a memory (withsource,verified, dedup guard,supersedes)clawvault_search— FTS5 relevance-ranked recallclawvault_recent— timeline of recent memoriesclawvault_consolidate— cluster related memories to synthesize into one insightclawvault_stats— totals, verified count, superseded count
Top skills in this category
Self-Improving + Proactive Agent
@ivangdavilaSelf-reflection + Self-criticism + Self-learning + Self-organizing memory. Agent evaluates its own work, catches mistakes, and improves permanently. Use when...
Self Improving Agent
@xiuchengSelf-improving agent system that analyzes conversation quality, identifies improvement opportunities, and continuously optimizes response strategies.
Proactive Agent Lite
@bestrockyTransform AI agents from task-followers into proactive partners with memory architecture, reverse prompting, and self-healing patterns. Lightweight version f...
Marketing Skills
@jchopard69Access 23 marketing modules offering checklists, frameworks, and ready-to-use deliverables for CRO, SEO, copywriting, analytics, launches, ads, and social me...
得到大脑(原 Get 笔记)
@iswalle通过官方 getnote CLI 连接得到大脑,完成浏览器授权、连接诊断、CLI 升级,以及保存、查询、搜索、整理和管理用户的真实笔记。用户明确要求登录、诊断或升级,或要保存链接/图片、查找和查看笔记、整理知识库/文件夹、订阅博主、管理标签时使用;不会自行安装或更新 Skill。