clawmem 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/AGENTS.md CHANGED
@@ -633,8 +633,8 @@ Symptom: "UserPromptSubmit hook error" on context-surfacing hook (intermittent)
633
633
  (including non-.md files like session .jsonl transcripts) and holds brief write locks. If the
634
634
  hook fires during a lock, it can exceed its timeout. More likely during active conversations
635
635
  when the watcher is processing rapid transcript changes.
636
- → Fix: Bump the hook timeout from 5s to 8s in ~/.claude/settings.json. If persistent, restart
637
- the watcher to clear memory bloat: `systemctl --user restart clawmem-watcher.service`.
636
+ → Fix: The default timeout is 8s (since v0.1.1). If you have an older install, re-run
637
+ `clawmem setup hooks` to update. If persistent, restart the watcher: `systemctl --user restart clawmem-watcher.service`.
638
638
  ```
639
639
 
640
640
  ## CLI Reference
package/CLAUDE.md CHANGED
@@ -633,8 +633,8 @@ Symptom: "UserPromptSubmit hook error" on context-surfacing hook (intermittent)
633
633
  (including non-.md files like session .jsonl transcripts) and holds brief write locks. If the
634
634
  hook fires during a lock, it can exceed its timeout. More likely during active conversations
635
635
  when the watcher is processing rapid transcript changes.
636
- → Fix: Bump the hook timeout from 5s to 8s in ~/.claude/settings.json. If persistent, restart
637
- the watcher to clear memory bloat: `systemctl --user restart clawmem-watcher.service`.
636
+ → Fix: The default timeout is 8s (since v0.1.1). If you have an older install, re-run
637
+ `clawmem setup hooks` to update. If persistent, restart the watcher: `systemctl --user restart clawmem-watcher.service`.
638
638
  ```
639
639
 
640
640
  ## CLI Reference
package/README.md CHANGED
@@ -606,7 +606,7 @@ clawmem doctor Full health check
606
606
  clawmem status Quick index status
607
607
  ```
608
608
 
609
- ## MCP Tools (25)
609
+ ## MCP Tools (28)
610
610
 
611
611
  Registered by `clawmem setup mcp`. Available to any MCP-compatible client.
612
612
 
@@ -652,6 +652,13 @@ Registered by `clawmem setup mcp`. Available to any MCP-compatible client.
652
652
  |---|---|
653
653
  | `beads_sync` | Sync Beads issues from Dolt backend (`bd` CLI) into memory: creates docs, bridges all dep types to `memory_relations`, runs A-MEM enrichment |
654
654
 
655
+ ### Vault Management
656
+
657
+ | Tool | Description |
658
+ |---|---|
659
+ | `list_vaults` | Show configured vault names and paths. Empty in single-vault mode. |
660
+ | `vault_sync` | Index markdown from a directory into a named vault. Restricted-path validation rejects sensitive directories. |
661
+
655
662
  ### Memory Management & Lifecycle
656
663
 
657
664
  | Tool | Description |
@@ -998,7 +1005,7 @@ Manual layers benefit from periodic re-indexing — a cron job running `clawmem
998
1005
 
999
1006
  Three-tier retrieval architecture: infrastructure (watcher + embed timer) → hooks (~90%) → agent MCP (~10%). Works out of the box without a dedicated GPU (all models auto-download via `node-llama-cpp`, uses Metal on Apple Silicon). For best performance, run three `llama-server` instances — see [GPU Services](#gpu-services) for model tiers (SOTA vs QMD native) and [Cloud Embedding](#option-c-cloud-embedding-api) for cloud embedding alternatives.
1000
1007
 
1001
- Key services: `clawmem-watcher` (auto-index on file change + beads sync), `clawmem-embed` timer (daily embedding sweep), 9 Claude Code hooks (context injection, session bootstrap, decision extraction, handoffs, feedback, compaction support). Optional `clawmem-curator` agent for on-demand lifecycle triage, retrieval health checks, and maintenance (`clawmem setup curator`).
1008
+ Key services: `clawmem-watcher` (auto-index on file change + beads sync), `clawmem-embed` timer (daily embedding sweep), 7 Claude Code hooks installed by default (context injection, curator nudge, compaction support, decision extraction, handoffs, feedback). Optional `clawmem-curator` agent for on-demand lifecycle triage, retrieval health checks, and maintenance (`clawmem setup curator`).
1002
1009
 
1003
1010
  ## Acknowledgments
1004
1011
 
package/SKILL.md CHANGED
@@ -637,8 +637,8 @@ Symptom: "UserPromptSubmit hook error" on context-surfacing hook (intermittent)
637
637
  -> SQLite contention between watcher and hook. Watcher processes filesystem events (including
638
638
  non-.md files like session .jsonl transcripts) and holds brief write locks. If the hook fires
639
639
  during a lock, it can exceed its timeout. More likely during active conversations.
640
- -> Fix: Bump hook timeout from 5s to 8s in ~/.claude/settings.json. If persistent, restart
641
- the watcher: `systemctl --user restart clawmem-watcher.service`.
640
+ -> Fix: Default timeout is 8s (since v0.1.1). If you have an older install, re-run
641
+ `clawmem setup hooks`. If persistent, restart the watcher: `systemctl --user restart clawmem-watcher.service`.
642
642
  ```
643
643
 
644
644
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmem",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "On-device context engine and memory for AI agents. Claude Code and OpenClaw. Hooks + MCP server + hybrid RAG search.",
5
5
  "type": "module",
6
6
  "bin": {