@bamdra/bamdra-memory-vector 0.1.8 → 0.1.9

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.
@@ -3,7 +3,7 @@
3
3
  "type": "tool",
4
4
  "name": "Bamdra Memory Vector",
5
5
  "description": "Local vector-style semantic retrieval enhancement for Bamdra memory.",
6
- "version": "0.1.8",
6
+ "version": "0.1.9",
7
7
  "main": "./dist/index.js",
8
8
  "skills": ["./skills"],
9
9
  "configSchema": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bamdra/bamdra-memory-vector",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Lightweight local semantic retrieval enhancement for the Bamdra OpenClaw memory suite.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://www.bamdra.com",
@@ -24,12 +24,15 @@ It complements topic memory. Use it when the user remembers something fuzzily, w
24
24
  - keep cross-user boundaries intact
25
25
  - do not flood the prompt with low-signal chunks
26
26
  - prefer a few strong recalls over many weak ones
27
+ - when the question plausibly targets local docs, notes, ideas, or knowledge files, check local vector-backed knowledge before using web search
27
28
 
28
29
  ## Markdown Knowledge Model
29
30
 
30
31
  - private Markdown is for one user's durable notes and memory fragments
31
32
  - shared Markdown is for team or reusable knowledge
32
33
  - both are editable by humans outside the runtime
34
+ - common human-managed directories include `knowledge/`, `docs/`, `notes/`, and `ideas/`
35
+ - `_runtime/` is system-managed and should not be treated as the main editing area
33
36
 
34
37
  ## Shared vs Private
35
38