claude-mem-lite 3.12.0 → 3.12.1

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.
@@ -10,7 +10,7 @@
10
10
  "plugins": [
11
11
  {
12
12
  "name": "claude-mem-lite",
13
- "version": "3.12.0",
13
+ "version": "3.12.1",
14
14
  "source": "./",
15
15
  "description": "Persistent long-term memory for Claude Code via MCP — captures coding decisions, bugfixes, and context across sessions. Hybrid FTS5 + TF-IDF search with episode batching. Single SQLite DB, no external services. A lighter, lower-cost alternative to claude-mem (episode batching + a smaller model; cost savings are an internal estimate, not a measured benchmark)."
16
16
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-mem-lite",
3
- "version": "3.12.0",
3
+ "version": "3.12.1",
4
4
  "description": "Persistent long-term memory for Claude Code via MCP — captures coding decisions, bugfixes, and context across sessions. Hybrid FTS5 + TF-IDF search with episode batching. Single SQLite DB, no external services. A lighter, lower-cost alternative to claude-mem (episode batching + a smaller model; cost savings are an internal estimate, not a measured benchmark).",
5
5
  "author": {
6
6
  "name": "sdsrss"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-mem-lite",
3
- "version": "3.12.0",
3
+ "version": "3.12.1",
4
4
  "description": "Persistent long-term memory for Claude Code via MCP — captures coding decisions, bugfixes, and context across sessions. Hybrid FTS5 + TF-IDF search with episode batching. Single SQLite DB, no external services. A lighter, lower-cost alternative to claude-mem (episode batching + a smaller model; cost savings are an internal estimate, not a measured benchmark).",
5
5
  "type": "module",
6
6
  "packageManager": "npm@10.9.2",
@@ -236,7 +236,10 @@ export function recommendSkill(rdb, promptText, project, opts = {}) {
236
236
  // this reco in the SAME session — without it, precision is only a global name-set join.
237
237
  session: opts.sessionId ?? null,
238
238
  mode, verdict: result.verdict, reason: result.reason,
239
- skill: top ? top.name : null,
239
+ // join key MUST be the Skill-tool invocation slug (e.g. 'superpowers:test-driven-development'),
240
+ // NOT the registry short name ('superpowers-tdd') — adoption rows log toolInput.skill (the slug),
241
+ // so logging top.name made in-session matched precision a guaranteed 0 for every namespaced skill.
242
+ skill: top ? (top.invocation_name || top.name) : null,
240
243
  relevance: top ? top.relevance : null,
241
244
  rel2: candidates[1] ? candidates[1].relevance : null,
242
245
  intentTop: top ? intentMatch(promptText, top) : false,