clawmem 0.23.0 → 0.24.0
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 +5 -5
- package/README.md +3 -3
- package/SKILL.md +5 -5
- package/docs/concepts/composite-scoring.md +4 -4
- package/docs/guides/upgrading.md +11 -1
- package/docs/internals/query-pipeline.md +2 -0
- package/docs/introduction.md +1 -1
- package/docs/reference/mcp-tools.md +8 -8
- package/package.json +1 -1
- package/src/clawmem.ts +2 -2
- package/src/mcp.ts +17 -9
- package/src/scoring-regime.ts +24 -13
- package/src/search-utils.ts +10 -0
- package/src/store.ts +13 -3
package/AGENTS.md
CHANGED
|
@@ -105,7 +105,7 @@ All other retrieval is handled by Tier 2 hooks. **Do NOT call MCP tools speculat
|
|
|
105
105
|
| `kg_query` | Entity SPO triples with temporal validity. Entity facts, NOT causal "why". |
|
|
106
106
|
| `session_log` | "last time" / "yesterday" / "what did we do". Do NOT use `query` for cross-session. |
|
|
107
107
|
| `profile` | User profile (static facts + dynamic context). |
|
|
108
|
-
| `memory_pin` | Lifecycle retention + priority among relevance-equivalent results (+0.3 composite boost on composite surfaces; exact-tie precedence on raw vector
|
|
108
|
+
| `memory_pin` | Lifecycle retention + priority among relevance-equivalent results (+0.3 composite boost on composite surfaces; exact-tie precedence on raw routes — vector + `search` non-recency). PROACTIVELY for constraints, architecture decisions, corrections. |
|
|
109
109
|
| `memory_snooze` | PROACTIVELY when `<vault-context>` surfaces noise — snooze 30 days. |
|
|
110
110
|
| `memory_forget` | Deactivate a memory by closest match. Sparingly — prefer snooze. Weak matches return a disambiguation list instead of acting (v0.23.0). |
|
|
111
111
|
| `build_graphs` | Temporal backbone + semantic graph after bulk ingestion. NOT after every reindex. |
|
|
@@ -135,14 +135,14 @@ The pipeline autonomously generates lex/vec/hyde variants, fuses BM25 + vector v
|
|
|
135
135
|
|
|
136
136
|
## Composite scoring
|
|
137
137
|
|
|
138
|
-
Applied on the composite surfaces: hooks, `query`,
|
|
138
|
+
Applied on the composite surfaces: hooks, `query`, and `memory_retrieve`'s keyword/hybrid/causal/complex modes. **v0.22.0: MCP `vsearch` and `memory_retrieve` semantic/discovery rank non-recency queries by RAW cosine instead** (`scoreBasis: "vector-cosine"`; metadata breaks exact ties only; `minScore` filters raw with no default); recency-intent queries keep composite everywhere. **v0.23.0:** `searchScore` on FTS surfaces is the monotonic `|bm25|/(1+|bm25|)` transform (it was a constant 1.0 through v0.22.0 due to a clamp bug — keyword relevance contributed zero ordering); FTS-transform scores and cosines are independent monotonic signals, not one calibrated scale. **v0.24.0: MCP `search` ranks non-recency queries by the RAW BM25 transform** (`scoreBasis: "fts-bm25"`; metadata breaks exact ties only; `minScore` filters raw with no default) — judged keyword eval: raw MRR 0.848 vs composite 0.415 over 43 targets, composite losing even on the fresh-doc-favorable slice; recency-intent queries keep composite.
|
|
139
139
|
|
|
140
140
|
```
|
|
141
141
|
compositeScore = (0.50·searchScore + 0.25·recencyScore + 0.25·confidenceScore) × qualityMultiplier × coActivationBoost
|
|
142
142
|
```
|
|
143
143
|
|
|
144
|
-
- `qualityMultiplier = 0.7 + 0.6·qualityScore` (0.7× … 1.3×); `coActivationBoost` up to +15%; length-normalized (floor 30%); frequency boost capped +10%; **pinned docs +0.3 additive on composite surfaces** (raw vector
|
|
145
|
-
- **`query` tool (v0.13.0+):** non-recency queries use **0.70·search + 0.15·recency + 0.15·confidence**. `
|
|
144
|
+
- `qualityMultiplier = 0.7 + 0.6·qualityScore` (0.7× … 1.3×); `coActivationBoost` up to +15%; length-normalized (floor 30%); frequency boost capped +10%; **pinned docs +0.3 additive on composite surfaces** (raw routes — vector + `search` non-recency: pin = exact-tie precedence only).
|
|
145
|
+
- **`query` tool (v0.13.0+):** non-recency queries use **0.70·search + 0.15·recency + 0.15·confidence**. `memory_retrieve`'s composite modes, context-surfacing, and `search`'s recency branch keep the 0.50/0.25/0.25 default. (`vsearch` + `memory_retrieve` semantic/discovery use RAW cosine, and `search` uses the RAW BM25 transform, for non-recency queries — v0.22.0/v0.24.0: no composite weights at all.)
|
|
146
146
|
- **Recency intent** ("latest"/"recent"/"last session") switches all to **0.10·search + 0.70·recency + 0.20·confidence**.
|
|
147
147
|
- **Half-lives:** decision/deductive/preference/hub/antipattern = ∞ · project 120d · research 90d · problem/milestone/note 60d · conversation/progress 45d · handoff 30d (extend up to 3× for frequently-accessed).
|
|
148
148
|
|
|
@@ -162,7 +162,7 @@ compositeScore = (0.50·searchScore + 0.25·recencyScore + 0.25·confidenceScore
|
|
|
162
162
|
|
|
163
163
|
## Memory lifecycle (pin / snooze / forget — manual tools)
|
|
164
164
|
|
|
165
|
-
- **`memory_pin`** (lifecycle retention + priority among relevance-equivalent results; +0.3 boost on composite surfaces, exact-tie precedence on raw
|
|
165
|
+
- **`memory_pin`** (lifecycle retention + priority among relevance-equivalent results; +0.3 boost on composite surfaces, exact-tie precedence on raw routes) — PROACTIVELY when: user says "remember this"/"important"; an architecture/critical decision was just made; a user preference/constraint should persist. Do NOT pin routine/session-specific items.
|
|
166
166
|
- **`memory_snooze`** — PROACTIVELY when a memory keeps surfacing but isn't relevant now, user says "not now"/"later", or content is time-boxed.
|
|
167
167
|
- **`memory_forget`** — only when genuinely wrong or permanently obsolete. Prefer snooze for temporary suppression.
|
|
168
168
|
- **Contradiction auto-resolution:** when `decision-extractor` detects a new decision contradicting an old one, the old one's confidence is lowered automatically — no manual action needed.
|
package/README.md
CHANGED
|
@@ -542,7 +542,7 @@ Registered by `clawmem setup mcp`. Available to any MCP-compatible client.
|
|
|
542
542
|
| Tool | Description |
|
|
543
543
|
|---|---|
|
|
544
544
|
| `memory_retrieve` | **Preferred entry point.** Auto-classifies query and routes to optimal backend (query, intent_search, session_log, find_similar, or query_plan). Use instead of manually choosing a search tool. |
|
|
545
|
-
| `search` | BM25 keyword search — for exact terms, config names, error codes, filenames.
|
|
545
|
+
| `search` | BM25 keyword search — for exact terms, config names, error codes, filenames. **v0.24.0: non-recency queries rank by the RAW BM25 transform** (`scoreBasis: "fts-bm25"`; judged keyword eval MRR 0.848 vs composite 0.415; metadata breaks exact ties only; `minScore` filters raw, no default); recency-intent queries keep composite. Collection filter supports comma-separated values. Prefer `memory_retrieve` for auto-routing. |
|
|
546
546
|
| `vsearch` | Vector semantic search — for conceptual/fuzzy matching when exact keywords are unknown. **v0.22.0: non-recency queries rank by RAW cosine (`scoreBasis: "vector-cosine"`; metadata breaks exact ties only; `minScore` filters raw with no default)**; recency-intent queries keep composite. Collection filter supports comma-separated values. Prefer `memory_retrieve` for auto-routing. |
|
|
547
547
|
| `query` | Full hybrid pipeline (BM25 + vector + rerank) — general-purpose when query type is unclear. WRONG for "why" questions (use `intent_search`) or cross-session queries (use `session_log`). Prefer `memory_retrieve` for auto-routing. Intent hint, strong-signal bypass, chunk dedup, candidateLimit, MMR diversity, compact mode. |
|
|
548
548
|
| `get` | Retrieve single document by path or docid |
|
|
@@ -595,7 +595,7 @@ Registered by `clawmem setup mcp`. Available to any MCP-compatible client.
|
|
|
595
595
|
| Tool | Description |
|
|
596
596
|
|---|---|
|
|
597
597
|
| `memory_forget` | Search → deactivate closest match (with audit trail). Weak matches return a disambiguation list instead of acting (v0.23.0) |
|
|
598
|
-
| `memory_pin` | Pin a memory: lifecycle retention + priority among relevance-equivalent results (+0.3 composite boost on hook/`query
|
|
598
|
+
| `memory_pin` | Pin a memory: lifecycle retention + priority among relevance-equivalent results (+0.3 composite boost on hook/`query` surfaces; exact-tie precedence on the raw routes — vector + `search` non-recency). USE PROACTIVELY when: user states a persistent constraint, makes an architecture decision, or corrects a misconception. Don't wait for curator — pin critical decisions immediately. |
|
|
599
599
|
| `memory_snooze` | Temporarily hide a memory from context surfacing until a date. USE PROACTIVELY when `<vault-context>` repeatedly surfaces irrelevant content — snooze for 30 days instead of ignoring it. |
|
|
600
600
|
| `status` | Index health with content type distribution |
|
|
601
601
|
| `reindex` | Trigger vault re-scan |
|
|
@@ -695,7 +695,7 @@ Content types are inferred from frontmatter or file path patterns. Half-lives ex
|
|
|
695
695
|
|
|
696
696
|
**Frequency boost:** Documents with higher revision counts or duplicate counts get a durability signal: `freqSignal = (revisions - 1) × 2 + (duplicates - 1)`, `freqBoost = min(0.10, log1p(freqSignal) × 0.03)`. Revision count (content evolution) is weighted 2× vs duplicate count (ingest repetition). Capped at 10%.
|
|
697
697
|
|
|
698
|
-
**Pin boost:** Pin = lifecycle retention + priority among relevance-equivalent results. On composite surfaces pinned documents get a +0.3 additive boost (capped at 1.0); on the raw vector
|
|
698
|
+
**Pin boost:** Pin = lifecycle retention + priority among relevance-equivalent results. On composite surfaces pinned documents get a +0.3 additive boost (capped at 1.0); on the raw routes — the vector tools (v0.22.0) and non-recency `search` (v0.24.0) — pin breaks exact raw-score ties only. Use `memory_pin` to pin critical memories.
|
|
699
699
|
|
|
700
700
|
**Snooze:** Snoozed documents are filtered out of context surfacing until their snooze date. Use `memory_snooze` for temporary suppression.
|
|
701
701
|
|
package/SKILL.md
CHANGED
|
@@ -92,7 +92,7 @@ All other retrieval is handled by Tier 2 hooks. **Do NOT call MCP tools speculat
|
|
|
92
92
|
| `kg_query` | Entity SPO triples with temporal validity. Entity facts, NOT causal "why" (use `intent_search`). |
|
|
93
93
|
| `session_log` | "last time" / "yesterday" / "what did we do". Do NOT use `query` for cross-session. |
|
|
94
94
|
| `profile` | User profile (static facts + dynamic context). |
|
|
95
|
-
| `memory_pin` | Lifecycle retention + priority among relevance-equivalent results (+0.3 composite boost on composite surfaces; exact-tie precedence on raw vector
|
|
95
|
+
| `memory_pin` | Lifecycle retention + priority among relevance-equivalent results (+0.3 composite boost on composite surfaces; exact-tie precedence on raw routes — vector + `search` non-recency). Use PROACTIVELY for constraints, architecture decisions, corrections. |
|
|
96
96
|
| `memory_snooze` | Use PROACTIVELY when `<vault-context>` surfaces noise — snooze 30 days. |
|
|
97
97
|
| `memory_forget` | Deactivate a memory by closest match. Sparingly — prefer snooze. Weak matches return a disambiguation list instead of acting (v0.23.0). |
|
|
98
98
|
| `build_graphs` | Temporal backbone + semantic graph after bulk ingestion. NOT after every reindex. |
|
|
@@ -189,7 +189,7 @@ Query -> intent classification (WHY/WHEN/ENTITY/WHAT)
|
|
|
189
189
|
|
|
190
190
|
## Composite scoring (how ranking works)
|
|
191
191
|
|
|
192
|
-
Applied on the composite surfaces: hooks, `query`,
|
|
192
|
+
Applied on the composite surfaces: hooks, `query`, and `memory_retrieve`'s keyword/hybrid/causal/complex modes. **v0.22.0: MCP `vsearch` and `memory_retrieve` semantic/discovery rank non-recency queries by RAW cosine instead** (`scoreBasis: "vector-cosine"`; metadata breaks exact ties only; `minScore` filters raw with no default); recency-intent queries keep composite everywhere. **v0.23.0:** `searchScore` on FTS surfaces is the monotonic `|bm25|/(1+|bm25|)` transform (it was a constant 1.0 through v0.22.0 due to a clamp bug — keyword relevance contributed zero ordering); FTS-transform scores and cosines are independent monotonic signals, not one calibrated scale. **v0.24.0: MCP `search` ranks non-recency queries by the RAW BM25 transform** (`scoreBasis: "fts-bm25"`; metadata breaks exact ties only; `minScore` filters raw with no default) — judged keyword eval: raw MRR 0.848 vs composite 0.415 over 43 targets, composite losing even on the fresh-doc-favorable slice; recency-intent queries keep composite.
|
|
193
193
|
|
|
194
194
|
```
|
|
195
195
|
compositeScore = (0.50·searchScore + 0.25·recencyScore + 0.25·confidenceScore) × qualityMultiplier × coActivationBoost
|
|
@@ -198,8 +198,8 @@ compositeScore = (0.50·searchScore + 0.25·recencyScore + 0.25·confidenceScore
|
|
|
198
198
|
- `qualityMultiplier = 0.7 + 0.6·qualityScore` (0.7× penalty … 1.3× boost).
|
|
199
199
|
- `coActivationBoost = 1 + min(coCount/10, 0.15)` (docs surfaced together get up to +15%).
|
|
200
200
|
- Length normalization penalizes verbose entries (floor 30%); frequency boost capped at +10%.
|
|
201
|
-
- **Pinned docs: +0.3 additive on composite surfaces** (capped at 1.0); on the raw vector
|
|
202
|
-
- **`query` tool (v0.13.0+):** non-recency queries use retrieval-tuned **0.70·search + 0.15·recency + 0.15·confidence**. `
|
|
201
|
+
- **Pinned docs: +0.3 additive on composite surfaces** (capped at 1.0); on the raw routes (vector + `search` non-recency) pin = exact-tie precedence only.
|
|
202
|
+
- **`query` tool (v0.13.0+):** non-recency queries use retrieval-tuned **0.70·search + 0.15·recency + 0.15·confidence**. `memory_retrieve`'s composite modes, `context-surfacing`, and `search`'s recency branch keep the 0.50/0.25/0.25 default. (`vsearch` + `memory_retrieve` semantic/discovery use RAW cosine, and `search` uses the RAW BM25 transform, for non-recency queries — v0.22.0/v0.24.0: no composite weights at all.)
|
|
203
203
|
- **Recency intent** ("latest"/"recent"/"last session") switches all to **0.10·search + 0.70·recency + 0.20·confidence**.
|
|
204
204
|
|
|
205
205
|
**Content-type half-lives:** decision / deductive / preference / hub / antipattern = ∞ (never decay) · project 120d · research 90d · problem / milestone / note 60d · conversation / progress 45d · handoff 30d. Half-lives extend up to 3× for frequently-accessed memories. Attention decay: non-durable types (handoff, progress, conversation, note, project) lose 5% confidence/week without access; decision / deductive / preference / hub / research / antipattern are exempt.
|
|
@@ -210,7 +210,7 @@ compositeScore = (0.50·searchScore + 0.25·recencyScore + 0.25·confidenceScore
|
|
|
210
210
|
|
|
211
211
|
## Memory lifecycle (pin / snooze / forget — manual tools)
|
|
212
212
|
|
|
213
|
-
- **`memory_pin`** (lifecycle retention + priority among relevance-equivalent results; +0.3 boost on composite surfaces, exact-tie precedence on raw
|
|
213
|
+
- **`memory_pin`** (lifecycle retention + priority among relevance-equivalent results; +0.3 boost on composite surfaces, exact-tie precedence on raw routes) — PROACTIVELY when: user says "remember this"/"important"; an architecture/critical decision was just made; a user preference/constraint should persist across sessions. Do NOT pin routine/session-specific items.
|
|
214
214
|
- **`memory_snooze`** — PROACTIVELY when a memory keeps surfacing but isn't relevant now, user says "not now"/"later", or content is time-boxed.
|
|
215
215
|
- **`memory_forget`** — only when genuinely wrong or permanently obsolete. Prefer snooze for temporary suppression.
|
|
216
216
|
- **Contradiction auto-resolution:** when `decision-extractor` detects a new decision contradicting an old one, the old one's confidence is lowered automatically — no manual action needed.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Composite Scoring
|
|
2
2
|
|
|
3
|
-
Composite scoring blends multiple signals beyond raw search relevance. **It applies to the hook pipeline (context surfacing), the `query` hybrid pipeline,
|
|
3
|
+
Composite scoring blends multiple signals beyond raw search relevance. **It applies to the hook pipeline (context surfacing), the `query` hybrid pipeline, and `memory_retrieve`'s keyword/hybrid/causal/complex modes.** The direct retrieval routes do NOT use it for non-recency queries: since v0.22.0 MCP `vsearch` and `memory_retrieve` semantic/discovery rank by raw vector cosine (`scoreBasis: "vector-cosine"`), and since v0.24.0 MCP `search` ranks by the raw BM25 transform (`scoreBasis: "fts-bm25"`) — metadata (including pin) breaks exact score ties only on all of them. Both splits are measured, not aesthetic: on judged sets against the live vault, raw cosine ranked 16/19 targets #1 (MRR 0.912) vs composite 1/19 (MRR 0.307, 14/19 pushed below the old minScore floor), and raw-FTS ranked 33/43 keyword targets #1 (MRR 0.848) vs composite 6/43 (MRR 0.415) — composite lost even on the fresh-doc-favorable slice (0.348 vs 0.801), so the multipliers below bury keyword relevance rather than refine it. Recency-intent queries keep composite (the Recency column) on every route that had it.
|
|
4
4
|
|
|
5
5
|
## Formula
|
|
6
6
|
|
|
@@ -19,7 +19,7 @@ compositeScore = (w_search * searchScore + w_recency * recencyScore + w_confiden
|
|
|
19
19
|
|
|
20
20
|
Recency intent is detected automatically when queries contain "latest", "recent", "last session", etc. — and **takes precedence over the `query`-tool weights**: a recency-phrased `query` call still uses the Recency-intent column.
|
|
21
21
|
|
|
22
|
-
The **`query` tool** uses retrieval-tuned weights (search 0.70) derived from a held-out judged-relevance eval (v0.13.0) — more weight on topical relevance measurably improves graded NDCG@10 without demoting the newest-correct version of evolving docs.
|
|
22
|
+
The **`query` tool** uses retrieval-tuned weights (search 0.70) derived from a held-out judged-relevance eval (v0.13.0) — more weight on topical relevance measurably improves graded NDCG@10 without demoting the newest-correct version of evolving docs. The composite `memory_retrieve` modes, the context-surfacing hook, and `search`'s recency branch **keep the Normal column**. The v0.21.0 `retrieval.mcp_direct_tuned_weights` knob is **superseded as of v0.22.0 and has no effect** — the direct-pipeline eval it was gated on measured tuned weights at 1/19 hit@1, and the direct routes moved to raw ordering instead. The key is still parsed (a once-per-process warning is logged if set) so existing configs don't break.
|
|
23
23
|
|
|
24
24
|
Threshold note: EOS-anchored last-token embedding models (e.g. zembed-1 served correctly) produce a **compressed-high similarity band** — unrelated pairs sit near ~0.4 rather than ~0.2. Relative ordering is what matters; treat absolute `minScore` cutoffs as model-dependent rather than universal.
|
|
25
25
|
|
|
@@ -94,13 +94,13 @@ coActivationBoost = 1 + min(coCount / 10, 0.15)
|
|
|
94
94
|
|
|
95
95
|
Documents frequently surfaced together in the same session get up to 15% boost.
|
|
96
96
|
|
|
97
|
-
**Where co-activation is applied depends on the caller.** The composite MCP surfaces (`query`, `search
|
|
97
|
+
**Where co-activation is applied depends on the caller.** The composite MCP surfaces (`query`, plus `search` and `vsearch` on recency-intent queries only) pass a co-activation function into `applyCompositeScoring()`, so the boost is part of the composite score used for ranking and — on `vsearch` and `search`, the tools that expose `minScore` — for `minScore` filtering. On the non-recency (raw) regimes of `vsearch` (v0.22.0) and `search` (v0.24.0), co-activation contributes only to the exact-tie key, never to ranking or filtering. The context-surfacing hook does NOT pass co-activation into composite scoring — instead it applies a separate spreading-activation step *after* adaptive threshold filtering. This means the hook's threshold decisions are based on scores without co-activation, and co-activation only boosts results that already passed the threshold. This is intentional: it prevents relationship boosts from rescuing otherwise-weak results into the surfaced set.
|
|
98
98
|
|
|
99
99
|
## Additional modifiers
|
|
100
100
|
|
|
101
101
|
### Pin boost
|
|
102
102
|
|
|
103
|
-
On composite surfaces, pinned documents receive a +0.3 additive boost (capped at 1.0 total). Pin's contract is **lifecycle retention + prioritization among relevance-equivalent results** — on the raw vector
|
|
103
|
+
On composite surfaces, pinned documents receive a +0.3 additive boost (capped at 1.0 total). Pin's contract is **lifecycle retention + prioritization among relevance-equivalent results** — on the raw routes (the vector tools since v0.22.0, and non-recency `search` since v0.24.0) it therefore breaks exact raw-score ties only and never lifts a document over a more relevant one.
|
|
104
104
|
|
|
105
105
|
### Length normalization
|
|
106
106
|
|
package/docs/guides/upgrading.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Upgrading ClawMem
|
|
2
2
|
|
|
3
|
-
Guide for upgrading between released versions. Current: **v0.
|
|
3
|
+
Guide for upgrading between released versions. Current: **v0.24.0**.
|
|
4
4
|
|
|
5
5
|
ClawMem upgrades are designed to be drop-in: pull the new version, restart any long-lived processes, and the SQLite schema auto-migrates on first open. This guide documents per-version specifics for upgrades that have additional considerations beyond the quick path below.
|
|
6
6
|
|
|
@@ -59,6 +59,16 @@ docker compose up -d reranker # /v1/rerank on :8090
|
|
|
59
59
|
|
|
60
60
|
---
|
|
61
61
|
|
|
62
|
+
## v0.24.0: raw-BM25-primary ranking on `search`
|
|
63
|
+
|
|
64
|
+
No migration steps — drop-in. Behavior notes:
|
|
65
|
+
|
|
66
|
+
- **MCP `search` ordering changes for non-recency queries**: results now rank by the raw BM25 transform instead of the composite blend (judged keyword eval: raw MRR 0.848 vs composite 0.415 over 43 targets; the composite lost even the fresh-doc-favorable slice). If you depended on recency/quality multipliers reordering keyword results, phrase the query with recency intent ("recent …", "latest …") — that branch keeps composite — or use `query`.
|
|
67
|
+
- **`minScore` on `search` is now raw-basis with NO default** for non-recency queries: omitted = no filter, explicit `0` honored. Previous composite-scale floors (e.g. `0.3`) do not translate — the raw transform maps `0.70 ⇔ |bm25| ≈ 2.3` and `0.85 ⇔ |bm25| ≈ 5.7`.
|
|
68
|
+
- **`structuredContent.scoreBasis`** on `search` reports `"fts-bm25"` (non-recency) or `"composite"` (recency-intent). Consumers that parsed the compact `score` as a composite value should read the basis field.
|
|
69
|
+
- **CLI `search`, REST, hooks, `query`, and `memory_retrieve` are unchanged** — the ranking-contract change is scoped to the MCP `search` tool, exactly as evaluated.
|
|
70
|
+
- New ops knob: `CLAWMEM_DISABLE_FTS_BYPASS=true` disables the query-pipeline strong-signal bypass at both consumers (MCP + CLI) — harness/incident use.
|
|
71
|
+
|
|
62
72
|
## v0.23.0: monotonic BM25 exposed score
|
|
63
73
|
|
|
64
74
|
No migration command, no schema change, no re-embed. Restart long-lived processes per the quick path.
|
|
@@ -81,6 +81,8 @@ The bypass is disabled when `intent` is provided — intent implies the query is
|
|
|
81
81
|
|
|
82
82
|
Functional as of v0.23.0: through v0.22.0 a clamp bug flattened every FTS score to a constant 1.0, so with two or more hits the gap was always 0 (the bypass never fired) and with exactly one hit the gap was always 1.0 (it fired even on a garbage match). The scores are now the monotonic `|bm25|/(1+|bm25|)` transform — 0.85 corresponds to |bm25| ≥ 5.67 — and the check itself lives in one shared helper (`hasStrongFtsSignal`) used by both this pipeline and the CLI `query` command. Threshold tuning is deliberately deferred to a judged query-pipeline A/B (BACKLOG 49.3).
|
|
83
83
|
|
|
84
|
+
Ops escape hatch (v0.24.0): `CLAWMEM_DISABLE_FTS_BYPASS=true` forces the full expansion path on every query at BOTH consumers (the MCP pipeline and the CLI `query`), via the shared `ftsBypassEnabled()` read in `search-utils.ts`. Intended for A/B harnesses and incident triage; `hasStrongFtsSignal` itself stays pure.
|
|
85
|
+
|
|
84
86
|
## Query expansion
|
|
85
87
|
|
|
86
88
|
The LLM generates lex (keyword), vec (semantic), and hyde (hypothetical answer) variants of the query, each carried as a typed `ExpandedQuery`. Variants are **routed by type**: `lex` expansions are searched on BM25 only, `vec` and `hyde` on vector only. The original query is the only leg that fans out to *both* backends. All legs are searched in parallel and fused; the original query's two lists receive 2x weight in RRF, ensuring it anchors the ranking.
|
package/docs/introduction.md
CHANGED
|
@@ -6,7 +6,7 @@ ClawMem is an open-source memory engine for Claude Code and AI agents. It runs o
|
|
|
6
6
|
|
|
7
7
|
- **Indexes** markdown documents into a local SQLite vault with full-text search (BM25) and vector embeddings
|
|
8
8
|
- **Retrieves** relevant context automatically via hooks or on-demand via MCP tools / REST API
|
|
9
|
-
- **Scores** results per route: raw vector cosine on the direct vector tools (v0.22.0), composite scoring (relevance, recency, confidence, quality, co-activation) on the hook and hybrid pipelines
|
|
9
|
+
- **Scores** results per route: raw vector cosine on the direct vector tools (v0.22.0), the raw BM25 transform on non-recency `search` (v0.24.0), composite scoring (relevance, recency, confidence, quality, co-activation) on the hook and hybrid pipelines
|
|
10
10
|
- **Tracks** decisions, handoffs, and session history across conversations
|
|
11
11
|
- **Traverses** causal and semantic graphs to answer "why" and "what led to" questions
|
|
12
12
|
|
|
@@ -6,7 +6,7 @@ Complete reference for ClawMem's MCP server tools. These let AI agents search, r
|
|
|
6
6
|
|
|
7
7
|
**Internal-collection visibility (v0.21.0):** the retrieval tools `search`, `vsearch`, `query`, `query_plan`, `memory_retrieve`, and `find_similar` exclude the system-internal `_clawmem` collection (observations/deductions/handoffs) by default. Opt-ins: pass `includeInternal: true` (all six tools), or — on the tools that expose a `collection` parameter (`search`, `vsearch`, `query`) — name `_clawmem` explicitly in the filter. `find_similar` auto-includes internal results when the REFERENCE document is itself internal. `intent_search`, `find_causal_links`, `kg_query`, `session_log`, and `timeline` are NOT filtered — system memory is their substrate by design.
|
|
8
8
|
|
|
9
|
-
**Scoring regimes (v0.22.0):** the direct
|
|
9
|
+
**Scoring regimes (v0.22.0 vector · v0.24.0 FTS):** the direct retrieval routes — `vsearch` and `memory_retrieve`'s semantic/discovery modes (v0.22.0), and `search` (v0.24.0) — rank non-recency queries by their RAW channel score: vector cosine (`scoreBasis: "vector-cosine"`) on the vector routes, the monotonic BM25 transform (`scoreBasis: "fts-bm25"`) on `search`. Raw values are channel-specific and NOT comparable across channels, across embedding models, or to composite scores. Document metadata — including pin — participates only inside groups of exactly-equal raw scores. On these routes `minScore` filters the raw score and has NO default (omitted = no filter; an explicit `0` is honored). Recency-intent queries ("latest…", "recently…", "yesterday…") keep the composite regime and report `scoreBasis: "composite"` — `vsearch`'s recency branch keeps its 0.3 composite default floor, `search`'s keeps 0 — as do `query`, `query_plan`, and `memory_retrieve`'s keyword/hybrid/causal/complex modes. `find_similar` has always ranked by raw cosine. Rationale — both splits are measured, not aesthetic: on judged sets against the live vault, raw cosine ranked 16/19 targets #1 (MRR 0.912) vs composite 1/19 (0.307); raw-FTS ranked 33/43 keyword targets #1 (MRR 0.848) vs composite 6/43 (0.415), with composite losing even on the fresh-doc-favorable slice (0.348 vs 0.801).
|
|
10
10
|
|
|
11
11
|
**FTS score provenance (v0.23.0):** the raw `score` on BM25/FTS results is the monotonic transform `|bm25|/(1+|bm25|)` of FTS5's negative-is-better `bm25()` value — bounded [0,1), higher is better, stable across queries. (Through v0.22.0 a clamp bug flattened it to a constant 1.0, so composite ranking on FTS surfaces was effectively metadata-only and score-threshold gates never filtered.) FTS-transform scores and vector cosines are **independent monotonic signals, not a calibrated common scale** — compare within a channel, not across channels.
|
|
12
12
|
|
|
@@ -40,7 +40,7 @@ Full hybrid pipeline: BM25 + vector + query expansion + cross-encoder reranking.
|
|
|
40
40
|
|-------|------|---------|-------------|
|
|
41
41
|
| `query` | string | required | Search query |
|
|
42
42
|
| `limit` | number | 10 | Max results |
|
|
43
|
-
| `compact` | boolean |
|
|
43
|
+
| `compact` | boolean | false | Compact output |
|
|
44
44
|
| `collection` | string | — | Filter by collection (comma-separated for multi) |
|
|
45
45
|
| `intent` | string | — | Domain hint for ambiguous queries (steers expansion, reranking, chunk selection) |
|
|
46
46
|
| `candidateLimit` | number | 30 | Candidates for reranking (tune precision vs speed) |
|
|
@@ -51,19 +51,19 @@ BM25 strong-signal bypass: skips expansion when top BM25 hit >= 0.85 with gap >=
|
|
|
51
51
|
|
|
52
52
|
### search
|
|
53
53
|
|
|
54
|
-
BM25 only. Zero GPU cost.
|
|
54
|
+
BM25 only. Zero GPU cost. Non-recency queries rank by the RAW BM25 transform (`scoreBasis: "fts-bm25"`, v0.24.0 — see the regimes note above); recency-intent queries use the composite regime.
|
|
55
55
|
|
|
56
56
|
| Param | Type | Default | Description |
|
|
57
57
|
|-------|------|---------|-------------|
|
|
58
58
|
| `query` | string | required | Search query |
|
|
59
59
|
| `limit` | number | 10 | Max results |
|
|
60
|
-
| `minScore` | number |
|
|
61
|
-
| `compact` | boolean |
|
|
60
|
+
| `minScore` | number | — | Score floor. Non-recency: filters the RAW BM25 transform, NO default (omitted = no filter; explicit `0` honored). Recency-intent: composite floor, default 0 |
|
|
61
|
+
| `compact` | boolean | false | Compact output |
|
|
62
62
|
| `collection` | string | — | Filter by collection |
|
|
63
63
|
| `includeInternal` | boolean | false | Include system-internal `_clawmem` docs |
|
|
64
64
|
| `vault` | string | — | Named vault |
|
|
65
65
|
|
|
66
|
-
Score fields:
|
|
66
|
+
Score fields: on non-recency queries the reported ranking score IS the raw BM25 transform (compact `score` and non-compact `compositeScore` both carry it; non-compact `score` is the same raw value). On recency-intent queries compact `score` / non-compact `compositeScore` are composite while non-compact `score` stays the raw transform.
|
|
67
67
|
|
|
68
68
|
### vsearch
|
|
69
69
|
|
|
@@ -74,7 +74,7 @@ Vector only. Semantic similarity. Non-recency queries rank by RAW cosine (`score
|
|
|
74
74
|
| `query` | string | required | Search query |
|
|
75
75
|
| `limit` | number | 10 | Max results |
|
|
76
76
|
| `minScore` | number | — | Raw-cosine floor on non-recency queries (no default — omitted means no filter; explicit `0` honored). Recency-intent queries keep the composite-scale 0.3 default. |
|
|
77
|
-
| `compact` | boolean |
|
|
77
|
+
| `compact` | boolean | false | Compact output |
|
|
78
78
|
| `collection` | string | — | Filter by collection |
|
|
79
79
|
| `includeInternal` | boolean | false | Include system-internal `_clawmem` docs |
|
|
80
80
|
| `vault` | string | — | Named vault |
|
|
@@ -186,7 +186,7 @@ Recent session history with handoffs and file changes.
|
|
|
186
186
|
|
|
187
187
|
### memory_pin
|
|
188
188
|
|
|
189
|
-
Pin a memory: lifecycle retention plus prioritization among relevance-equivalent results. On composite surfaces (hooks, `query
|
|
189
|
+
Pin a memory: lifecycle retention plus prioritization among relevance-equivalent results. On composite surfaces (hooks, `query`) pinned docs get the +0.3 composite boost; on the raw routes (`vsearch`/`memory_retrieve` semantic-discovery v0.22.0, `search` non-recency v0.24.0) pin wins exact raw-score ties but never overrides a relevance difference.
|
|
190
190
|
|
|
191
191
|
| Param | Type | Default | Description |
|
|
192
192
|
|-------|------|---------|-------------|
|
package/package.json
CHANGED
package/src/clawmem.ts
CHANGED
|
@@ -58,7 +58,7 @@ import { formatSearchResults, type OutputFormat } from "./formatter.ts";
|
|
|
58
58
|
import { indexCollection, parseDocument } from "./indexer.ts";
|
|
59
59
|
import { detectBeadsProject } from "./beads.ts";
|
|
60
60
|
import { applyCompositeScoring, hasRecencyIntent, type EnrichedResult } from "./memory.ts";
|
|
61
|
-
import { enrichResults, reciprocalRankFusion, toRanked, hasStrongFtsSignal, type RankedResult } from "./search-utils.ts";
|
|
61
|
+
import { enrichResults, reciprocalRankFusion, toRanked, hasStrongFtsSignal, ftsBypassEnabled, type RankedResult } from "./search-utils.ts";
|
|
62
62
|
import { splitDocument } from "./splitter.ts";
|
|
63
63
|
import { getProfile, updateProfile, isProfileStale } from "./profile.ts";
|
|
64
64
|
import { regenerateAllDirectoryContexts } from "./directory-context.ts";
|
|
@@ -1095,7 +1095,7 @@ async function cmdQuery(args: string[]) {
|
|
|
1095
1095
|
|
|
1096
1096
|
// Step 1: BM25 for strong signal check
|
|
1097
1097
|
const ftsResults = s.searchFTS(query, 20);
|
|
1098
|
-
const strongSignal = hasStrongFtsSignal(ftsResults);
|
|
1098
|
+
const strongSignal = ftsBypassEnabled() && hasStrongFtsSignal(ftsResults);
|
|
1099
1099
|
|
|
1100
1100
|
// Step 2: Query expansion (skip if strong BM25 signal). expandQuery now returns
|
|
1101
1101
|
// typed ExpandedQuery[] (lex/vec/hyde) — no more brittle string re-parsing, and
|
package/src/mcp.ts
CHANGED
|
@@ -33,8 +33,8 @@ import {
|
|
|
33
33
|
type EnrichedResult,
|
|
34
34
|
type CoActivationFn,
|
|
35
35
|
} from "./memory.ts";
|
|
36
|
-
import { enrichResults, reciprocalRankFusion, toRanked, blendRerank, hasStrongFtsSignal, attachRrfScores, type RankedResult } from "./search-utils.ts";
|
|
37
|
-
import { selectScoringRegime, rankRawPrimary, VECTOR_SCORE_BASIS, COMPOSITE_SCORE_BASIS } from "./scoring-regime.ts";
|
|
36
|
+
import { enrichResults, reciprocalRankFusion, toRanked, blendRerank, hasStrongFtsSignal, ftsBypassEnabled, attachRrfScores, type RankedResult } from "./search-utils.ts";
|
|
37
|
+
import { selectScoringRegime, rankRawPrimary, VECTOR_SCORE_BASIS, FTS_SCORE_BASIS, COMPOSITE_SCORE_BASIS } from "./scoring-regime.ts";
|
|
38
38
|
import { applyMMRDiversity } from "./mmr.ts";
|
|
39
39
|
import { indexCollection, type IndexStats } from "./indexer.ts";
|
|
40
40
|
import { listCollections } from "./collections.ts";
|
|
@@ -558,7 +558,7 @@ This is the recommended entry point for ALL memory queries.`,
|
|
|
558
558
|
);
|
|
559
559
|
|
|
560
560
|
// ---------------------------------------------------------------------------
|
|
561
|
-
// Tool: search (BM25
|
|
561
|
+
// Tool: search (BM25 — raw-transform ranking; composite on recency intent)
|
|
562
562
|
// ---------------------------------------------------------------------------
|
|
563
563
|
|
|
564
564
|
server.registerTool(
|
|
@@ -569,7 +569,7 @@ This is the recommended entry point for ALL memory queries.`,
|
|
|
569
569
|
inputSchema: {
|
|
570
570
|
query: z.string().describe("Search query"),
|
|
571
571
|
limit: z.number().optional().default(10),
|
|
572
|
-
minScore: z.number().optional().default
|
|
572
|
+
minScore: z.number().optional().describe("Score floor. Non-recency queries filter the RAW FTS score, the monotonic |bm25|/(1+|bm25|) transform (default: no filter; explicit 0 honored). Recency-intent queries keep the composite-scale default 0."),
|
|
573
573
|
collection: z.string().optional().describe("Filter to collection (single name or comma-separated)"),
|
|
574
574
|
compact: z.boolean().optional().default(false).describe("Return compact results (id, path, title, score, snippet) instead of full content"),
|
|
575
575
|
includeInternal: z.boolean().optional().default(false).describe("Include system-internal _clawmem docs (observations/deductions) — excluded by default"),
|
|
@@ -586,8 +586,16 @@ This is the recommended entry point for ALL memory queries.`,
|
|
|
586
586
|
|
|
587
587
|
const coFn = (path: string) => store.getCoActivated(path);
|
|
588
588
|
const enriched = enrichResults(store, results, query);
|
|
589
|
-
|
|
590
|
-
|
|
589
|
+
// v0.24.0 two-regime scoring (S49-JUDGED-EVAL-DESIGN.md, SWITCH verdict): non-recency
|
|
590
|
+
// queries rank by the raw FTS transform — metadata (incl. pin) breaks exact score
|
|
591
|
+
// ties only, and minScore (if given) filters the raw score with NO default floor.
|
|
592
|
+
// Recency-intent queries keep the pre-v0.24.0 composite behavior including its
|
|
593
|
+
// default-0 floor.
|
|
594
|
+
const regime = selectScoringRegime(query);
|
|
595
|
+
const sScoreBasis = regime === "raw" ? FTS_SCORE_BASIS : COMPOSITE_SCORE_BASIS;
|
|
596
|
+
const scored = regime === "raw"
|
|
597
|
+
? rankRawPrimary(enriched, query, coFn).filter(r => minScore === undefined || r.compositeScore >= minScore)
|
|
598
|
+
: applyCompositeScoring(enriched, query, coFn).filter(r => r.compositeScore >= (minScore || 0));
|
|
591
599
|
|
|
592
600
|
if (compact) {
|
|
593
601
|
const items = scored.map(r => ({
|
|
@@ -596,7 +604,7 @@ This is the recommended entry point for ALL memory queries.`,
|
|
|
596
604
|
snippet: (r.body || "").substring(0, 150), content_type: r.contentType, modified_at: r.modifiedAt,
|
|
597
605
|
fragment: r.fragmentType ? { type: r.fragmentType, label: r.fragmentLabel } : undefined,
|
|
598
606
|
}));
|
|
599
|
-
return { content: [{ type: "text", text: formatSearchSummary(items.map(i => ({ ...i, file: i.path, compositeScore: i.score, context: null })), query) }], structuredContent: { results: items } };
|
|
607
|
+
return { content: [{ type: "text", text: formatSearchSummary(items.map(i => ({ ...i, file: i.path, compositeScore: i.score, context: null })), query) }], structuredContent: { results: items, scoreBasis: sScoreBasis } };
|
|
600
608
|
}
|
|
601
609
|
|
|
602
610
|
const filtered: SearchResultItem[] = scored.map(r => {
|
|
@@ -615,7 +623,7 @@ This is the recommended entry point for ALL memory queries.`,
|
|
|
615
623
|
|
|
616
624
|
return {
|
|
617
625
|
content: [{ type: "text", text: formatSearchSummary(filtered, query) }],
|
|
618
|
-
structuredContent: { results: filtered },
|
|
626
|
+
structuredContent: { results: filtered, scoreBasis: sScoreBasis },
|
|
619
627
|
};
|
|
620
628
|
}
|
|
621
629
|
);
|
|
@@ -741,7 +749,7 @@ This is the recommended entry point for ALL memory queries.`,
|
|
|
741
749
|
const initialFts = store.searchFTS(query, 20, undefined, collections, dateRange, excl);
|
|
742
750
|
// When intent is provided, disable strong-signal bypass — the obvious BM25
|
|
743
751
|
// match may not be what the caller wants (e.g. "performance" with intent "web page load times")
|
|
744
|
-
const hasStrongSignal = !intent && hasStrongFtsSignal(initialFts);
|
|
752
|
+
const hasStrongSignal = !intent && ftsBypassEnabled() && hasStrongFtsSignal(initialFts);
|
|
745
753
|
|
|
746
754
|
// Step 2: Query expansion (skipped if strong signal). Typed routing —
|
|
747
755
|
// original → BOTH FTS + vector (2× RRF anchor), lex → FTS only, vec/hyde → vector only.
|
package/src/scoring-regime.ts
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Centralized scoring-regime selection for the MCP direct
|
|
2
|
+
* Centralized scoring-regime selection for the MCP direct retrieval routes
|
|
3
|
+
* (vector routes v0.22.0; FTS `search` route v0.24.0).
|
|
3
4
|
*
|
|
4
5
|
* Two regimes:
|
|
5
6
|
*
|
|
6
7
|
* "raw" — non-recency queries on the evidenced raw routes (`vsearch`,
|
|
7
|
-
* `memory_retrieve` semantic/discovery): results rank
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
8
|
+
* `memory_retrieve` semantic/discovery, `search`): results rank
|
|
9
|
+
* by the RAW channel score DESC — vector cosine on the vector
|
|
10
|
+
* routes (scoreBasis "vector-cosine"), the monotonic BM25
|
|
11
|
+
* transform on the FTS route (scoreBasis "fts-bm25"). Document
|
|
12
|
+
* metadata — including pin — participates ONLY inside groups of
|
|
13
|
+
* exactly-equal raw scores. Raw scores are channel-specific and
|
|
14
|
+
* not comparable to composite scores or across channels.
|
|
13
15
|
*
|
|
14
16
|
* "recency-composite" — hasRecencyIntent(query): the pre-v0.22.0 composite behavior,
|
|
15
17
|
* unchanged (RECENCY_WEIGHTS blend, multipliers, pin boost,
|
|
@@ -20,6 +22,10 @@
|
|
|
20
22
|
* below the old composite minScore — every metadata signal large enough to matter is
|
|
21
23
|
* larger than the 0.03–0.10 raw margins that separate right answers from wrong ones,
|
|
22
24
|
* so metadata may only ever break exact raw-score ties on these routes.
|
|
25
|
+
* FTS basis (BACKLOG Source 49.2, judged keyword eval 2026-07-11): raw-FTS-primary
|
|
26
|
+
* MRR 0.848 vs shipped composite 0.415 over 43 judged targets (held-out 0.875 vs
|
|
27
|
+
* 0.335, composite hit@1 0/20) — composite lost even on the composite-favorable
|
|
28
|
+
* fresh-among-many shape (0.348 vs 0.801).
|
|
23
29
|
*/
|
|
24
30
|
import {
|
|
25
31
|
applyCompositeScoring,
|
|
@@ -30,8 +36,11 @@ import {
|
|
|
30
36
|
type CompositeScoringOptions,
|
|
31
37
|
} from "./memory.ts";
|
|
32
38
|
|
|
33
|
-
/** Reported score basis for raw-regime results: raw
|
|
39
|
+
/** Reported score basis for raw-regime results on the vector routes: raw cosine. */
|
|
34
40
|
export const VECTOR_SCORE_BASIS = "vector-cosine" as const;
|
|
41
|
+
/** Reported score basis for raw-regime results on the FTS route (v0.24.0): the
|
|
42
|
+
* monotonic |bm25|/(1+|bm25|) transform. */
|
|
43
|
+
export const FTS_SCORE_BASIS = "fts-bm25" as const;
|
|
35
44
|
/** Reported score basis for composite-scored results. */
|
|
36
45
|
export const COMPOSITE_SCORE_BASIS = "composite" as const;
|
|
37
46
|
|
|
@@ -43,15 +52,17 @@ export function selectScoringRegime(query: string): ScoringRegime {
|
|
|
43
52
|
}
|
|
44
53
|
|
|
45
54
|
/**
|
|
46
|
-
* Raw-primary ranking (design R1/R2): raw score DESC; within a group of
|
|
47
|
-
* raw scores the deterministic tie order is pinned DESC, then legacy
|
|
48
|
-
* then displayPath ASC. `compositeScore` on the returned rows carries
|
|
49
|
-
* the
|
|
55
|
+
* Raw-primary ranking (design R1/R2): raw channel score DESC; within a group of
|
|
56
|
+
* exactly-equal raw scores the deterministic tie order is pinned DESC, then legacy
|
|
57
|
+
* composite DESC, then displayPath ASC. `compositeScore` on the returned rows carries
|
|
58
|
+
* the RAW score — vector cosine on the vector routes, the monotonic BM25 transform on
|
|
59
|
+
* the FTS route. Exact transformed-score ties are legitimate relevance-equivalent
|
|
60
|
+
* groups on both channels.
|
|
50
61
|
*
|
|
51
62
|
* Callers gate on selectScoringRegime() first — this ranker is only meaningful for
|
|
52
63
|
* non-recency queries (the legacy composite computed here for tie keys therefore never
|
|
53
64
|
* takes the RECENCY_WEIGHTS branch). Inputs are document-unique on these routes
|
|
54
|
-
* (searchVecDetailed
|
|
65
|
+
* (searchVecDetailed and searchFTS both hydrate one row per document).
|
|
55
66
|
*
|
|
56
67
|
* `options.now` flows to the tie-key composite so frozen-clock evaluation (the v0.22.0
|
|
57
68
|
* acceptance bundle) is bit-reproducible.
|
package/src/search-utils.ts
CHANGED
|
@@ -233,3 +233,13 @@ export function hasStrongFtsSignal(results: SearchResult[]): boolean {
|
|
|
233
233
|
const second = results.length > 1 ? results[1]!.score : 0;
|
|
234
234
|
return top >= 0.85 && (top - second) >= 0.15;
|
|
235
235
|
}
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* Ops escape hatch for the BM25 strong-signal bypass: CLAWMEM_DISABLE_FTS_BYPASS=true
|
|
239
|
+
* forces the full expansion path on every query (both the MCP `query` pipeline and the
|
|
240
|
+
* CLI `query` consume this). Read at call time so A/B harnesses and tests can toggle
|
|
241
|
+
* per invocation; `hasStrongFtsSignal` itself stays pure.
|
|
242
|
+
*/
|
|
243
|
+
export function ftsBypassEnabled(): boolean {
|
|
244
|
+
return process.env.CLAWMEM_DISABLE_FTS_BYPASS !== "true";
|
|
245
|
+
}
|
package/src/store.ts
CHANGED
|
@@ -4184,14 +4184,24 @@ export type ExpandedQuery = {
|
|
|
4184
4184
|
const EXPAND_CACHE_VERSION = "v3-qmd-terse-typed";
|
|
4185
4185
|
const EXPAND_PROVIDER_FINGERPRINT = "qmd-terse";
|
|
4186
4186
|
|
|
4187
|
-
|
|
4188
|
-
|
|
4189
|
-
|
|
4187
|
+
/**
|
|
4188
|
+
* The EXACT llm_cache key expandQuery(query, model, intent) reads and writes.
|
|
4189
|
+
* Exported for eval harnesses (S49.3 freeze protocol): delete/verify expansion
|
|
4190
|
+
* cache rows without replicating the private key construction — the version and
|
|
4191
|
+
* provider fingerprint stay in one place.
|
|
4192
|
+
*/
|
|
4193
|
+
export function expandQueryCacheKey(query: string, model: string = DEFAULT_QUERY_MODEL, intent?: string): string {
|
|
4194
|
+
return getCacheKey(`expandQuery:${EXPAND_CACHE_VERSION}`, {
|
|
4190
4195
|
query,
|
|
4191
4196
|
model,
|
|
4192
4197
|
provider: EXPAND_PROVIDER_FINGERPRINT,
|
|
4193
4198
|
...(intent && { intent }),
|
|
4194
4199
|
});
|
|
4200
|
+
}
|
|
4201
|
+
|
|
4202
|
+
export async function expandQuery(query: string, model: string = DEFAULT_QUERY_MODEL, db: Database, intent?: string): Promise<ExpandedQuery[]> {
|
|
4203
|
+
// Typed-JSON cache. Versioned key (include intent + provider fingerprint).
|
|
4204
|
+
const cacheKey = expandQueryCacheKey(query, model, intent);
|
|
4195
4205
|
const cached = getCachedResult(db, cacheKey);
|
|
4196
4206
|
if (cached) {
|
|
4197
4207
|
try {
|