claude-mem-lite 2.32.8 → 2.33.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.
- package/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/.mcp.json +0 -0
- package/LICENSE +0 -0
- package/README.md +0 -0
- package/README.zh-CN.md +0 -0
- package/adopt-cli.mjs +53 -1
- package/adopt-content.mjs +0 -0
- package/bash-utils.mjs +0 -0
- package/commands/adopt.md +0 -0
- package/commands/bug.md +0 -0
- package/commands/lesson.md +0 -0
- package/commands/mem.md +0 -0
- package/commands/memory.md +0 -0
- package/commands/tools.md +0 -0
- package/commands/unadopt.md +0 -0
- package/commands/update.md +0 -0
- package/format-utils.mjs +0 -0
- package/haiku-client.mjs +0 -0
- package/hash-utils.mjs +0 -0
- package/hook-context.mjs +0 -0
- package/hook-episode.mjs +0 -0
- package/hook-handoff.mjs +0 -0
- package/hook-llm.mjs +17 -5
- package/hook-memory.mjs +0 -0
- package/hook-optimize.mjs +0 -0
- package/hook-semaphore.mjs +0 -0
- package/hook-shared.mjs +0 -0
- package/hook-update.mjs +0 -0
- package/hook.mjs +52 -7
- package/hooks/hooks.json +0 -0
- package/install-metadata.mjs +0 -0
- package/install.mjs +0 -0
- package/lib/activity.mjs +0 -0
- package/lib/doctor-benchmark.mjs +0 -0
- package/lib/git-state.mjs +0 -0
- package/lib/plan-reader.mjs +0 -0
- package/lib/startup-dashboard.mjs +0 -0
- package/lib/task-reader.mjs +0 -0
- package/mem-cli.mjs +0 -0
- package/memdir.mjs +0 -0
- package/nlp.mjs +0 -0
- package/package.json +1 -1
- package/plugin-cache-guard.mjs +0 -0
- package/project-utils.mjs +0 -0
- package/registry/preinstalled.json +0 -0
- package/registry-enricher.mjs +0 -0
- package/registry-github.mjs +0 -0
- package/registry-importer.mjs +0 -0
- package/registry-indexer.mjs +0 -0
- package/registry-retriever.mjs +0 -0
- package/registry-scanner.mjs +0 -0
- package/registry.mjs +0 -0
- package/resource-discovery.mjs +0 -0
- package/schema.mjs +0 -0
- package/scoring-sql.mjs +0 -0
- package/scripts/launch.mjs +0 -0
- package/scripts/pre-skill-bridge.js +0 -0
- package/scripts/pre-tool-recall.js +58 -17
- package/scripts/prompt-search-utils.mjs +0 -0
- package/scripts/user-prompt-search.js +24 -3
- package/secret-scrub.mjs +0 -0
- package/server-internals.mjs +0 -0
- package/server.mjs +0 -0
- package/skill.md +0 -0
- package/skip-tools.mjs +0 -0
- package/source-files.mjs +0 -0
- package/stop-words.mjs +0 -0
- package/synonyms.mjs +0 -0
- package/tfidf.mjs +0 -0
- package/tier.mjs +0 -0
- package/tool-schemas.mjs +0 -0
- package/utils.mjs +0 -0
package/.mcp.json
CHANGED
|
File without changes
|
package/LICENSE
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
File without changes
|
package/README.zh-CN.md
CHANGED
|
File without changes
|
package/adopt-cli.mjs
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// --dry-run = print intent without writing
|
|
10
10
|
// --status = list all adopted projects + versions
|
|
11
11
|
|
|
12
|
-
import { existsSync, readdirSync, statSync } from 'fs';
|
|
12
|
+
import { existsSync, readdirSync, statSync, mkdirSync, writeFileSync } from 'fs';
|
|
13
13
|
import { homedir } from 'os';
|
|
14
14
|
import { join } from 'path';
|
|
15
15
|
import {
|
|
@@ -121,6 +121,58 @@ function adoptOne(memdir, { force, dryRun, all }) {
|
|
|
121
121
|
}
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
+
/**
|
|
125
|
+
* silentAutoAdopt — plugin-mode first-run auto-adopt helper (v2.33.0).
|
|
126
|
+
*
|
|
127
|
+
* Preconditions (caller must gate): CLAUDE_PLUGIN_ROOT set, MEM_NO_AUTO_ADOPT!=1,
|
|
128
|
+
* MEM_QUIET_HOOKS!=1, first-attempt marker absent. This helper does NOT re-check
|
|
129
|
+
* those — it only does the write + marker persistence.
|
|
130
|
+
*
|
|
131
|
+
* Behavior:
|
|
132
|
+
* - Writes plugin sentinel + detail doc to the memdir for `cwd`.
|
|
133
|
+
* - Writes a per-project first-attempt marker under `markerDir` so a later
|
|
134
|
+
* `/unadopt` is respected (no re-adopt loop).
|
|
135
|
+
* - Silent: never logs, never throws. Returns structured result.
|
|
136
|
+
*
|
|
137
|
+
* Returns { ok, action, reason } — caller uses for telemetry / debugLog only.
|
|
138
|
+
*/
|
|
139
|
+
export function silentAutoAdopt({ cwd, markerDir, markerKey }) {
|
|
140
|
+
const memdir = memdirPath(cwd);
|
|
141
|
+
try {
|
|
142
|
+
if (isAdopted(memdir, PLUGIN_SLUG)) {
|
|
143
|
+
writeMarker(markerDir, markerKey);
|
|
144
|
+
return { ok: true, action: 'already-adopted' };
|
|
145
|
+
}
|
|
146
|
+
writePluginSection(memdir, {
|
|
147
|
+
slug: PLUGIN_SLUG,
|
|
148
|
+
version: CURRENT_SENTINEL_VERSION,
|
|
149
|
+
contentLine: getIndexLine(),
|
|
150
|
+
force: false,
|
|
151
|
+
});
|
|
152
|
+
writePluginDoc(memdir, PLUGIN_SLUG, getDetailDoc());
|
|
153
|
+
writeMarker(markerDir, markerKey);
|
|
154
|
+
return { ok: true, action: 'adopted' };
|
|
155
|
+
} catch (e) {
|
|
156
|
+
// Budget exceeded, user-edited conflict, or FS error — write marker so we
|
|
157
|
+
// don't retry on every SessionStart. User can run /adopt --force manually.
|
|
158
|
+
try { writeMarker(markerDir, markerKey); } catch { /* marker best-effort */ }
|
|
159
|
+
const reason = e instanceof UserEditedError ? 'user-edited'
|
|
160
|
+
: e instanceof BudgetExceededError ? 'budget-exceeded'
|
|
161
|
+
: 'error';
|
|
162
|
+
return { ok: false, action: 'skipped', reason, err: e };
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
function writeMarker(markerDir, markerKey) {
|
|
167
|
+
if (!existsSync(markerDir)) mkdirSync(markerDir, { recursive: true });
|
|
168
|
+
const path = join(markerDir, `.auto-adopt-${markerKey}`);
|
|
169
|
+
writeFileSync(path, JSON.stringify({ firstAttemptAt: new Date().toISOString() }));
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
export function hasAutoAdoptMarker(markerDir, markerKey) {
|
|
173
|
+
return existsSync(join(markerDir, `.auto-adopt-${markerKey}`));
|
|
174
|
+
}
|
|
175
|
+
|
|
124
176
|
function statusAll() {
|
|
125
177
|
const dirs = listAllMemdirs();
|
|
126
178
|
log('[adopt --status] scanning ~/.claude/projects/*/memory/');
|
package/adopt-content.mjs
CHANGED
|
File without changes
|
package/bash-utils.mjs
CHANGED
|
File without changes
|
package/commands/adopt.md
CHANGED
|
File without changes
|
package/commands/bug.md
CHANGED
|
File without changes
|
package/commands/lesson.md
CHANGED
|
File without changes
|
package/commands/mem.md
CHANGED
|
File without changes
|
package/commands/memory.md
CHANGED
|
File without changes
|
package/commands/tools.md
CHANGED
|
File without changes
|
package/commands/unadopt.md
CHANGED
|
File without changes
|
package/commands/update.md
CHANGED
|
File without changes
|
package/format-utils.mjs
CHANGED
|
File without changes
|
package/haiku-client.mjs
CHANGED
|
File without changes
|
package/hash-utils.mjs
CHANGED
|
File without changes
|
package/hook-context.mjs
CHANGED
|
File without changes
|
package/hook-episode.mjs
CHANGED
|
File without changes
|
package/hook-handoff.mjs
CHANGED
|
File without changes
|
package/hook-llm.mjs
CHANGED
|
@@ -559,10 +559,17 @@ search_aliases: 2-6 alternative search terms someone might use to find this memo
|
|
|
559
559
|
return;
|
|
560
560
|
}
|
|
561
561
|
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
562
|
+
// v2.33.1: expanded low-signal filter. Historical data showed Haiku
|
|
563
|
+
// returns 'none'/''/'n/a'/'null'/'-'/'todo'/'tbd' ~95% of the time —
|
|
564
|
+
// all noise with no retrieval value. Also reject lessons <12 chars
|
|
565
|
+
// (e.g. "ok", "works", "fixed it") — too short to teach a future session.
|
|
566
|
+
// When filtered, downgrade importance to 0 so rule-based fallback in
|
|
567
|
+
// hook.mjs:saveObservation writes the obs but hook queries (which all
|
|
568
|
+
// require importance >= 1) ignore it.
|
|
569
|
+
const rawLesson = typeof parsed.lesson_learned === 'string' ? parsed.lesson_learned.trim() : '';
|
|
570
|
+
const lowSignalLesson = new Set(['none', '', 'n/a', 'null', 'todo', 'tbd', 'na', '-', 'nothing', 'nil']);
|
|
571
|
+
const isLessonLowSignal = lowSignalLesson.has(rawLesson.toLowerCase()) || rawLesson.length < 12;
|
|
572
|
+
const lessonLearned = isLessonLowSignal ? null : rawLesson.slice(0, 500);
|
|
566
573
|
const searchAliases = Array.isArray(parsed.search_aliases)
|
|
567
574
|
? parsed.search_aliases.slice(0, 6).join(' ')
|
|
568
575
|
: null;
|
|
@@ -576,7 +583,12 @@ search_aliases: 2-6 alternative search terms someone might use to find this memo
|
|
|
576
583
|
facts: Array.isArray(parsed.facts) ? parsed.facts.slice(0, 10) : [],
|
|
577
584
|
files: episode.files,
|
|
578
585
|
filesRead: episode.filesRead || [],
|
|
579
|
-
|
|
586
|
+
// v2.33.1: when lesson is low-signal, don't trust Haiku's importance
|
|
587
|
+
// inflation for noise-prone types. rule-based floor still applies so
|
|
588
|
+
// error-in-test (→3) / config-change (→2) keep their floor.
|
|
589
|
+
importance: isLessonLowSignal && (parsed.type === 'change' || parsed.type === 'discovery')
|
|
590
|
+
? Math.min(ruleImportance, 1)
|
|
591
|
+
: Math.max(ruleImportance, clampImportance(parsed.importance)),
|
|
580
592
|
lessonLearned,
|
|
581
593
|
searchAliases,
|
|
582
594
|
};
|
package/hook-memory.mjs
CHANGED
|
File without changes
|
package/hook-optimize.mjs
CHANGED
|
File without changes
|
package/hook-semaphore.mjs
CHANGED
|
File without changes
|
package/hook-shared.mjs
CHANGED
|
File without changes
|
package/hook-update.mjs
CHANGED
|
File without changes
|
package/hook.mjs
CHANGED
|
@@ -32,6 +32,7 @@ import { searchRelevantMemories } from './hook-memory.mjs';
|
|
|
32
32
|
import { buildAndSaveHandoff, detectContinuationIntent, renderHandoffInjection, extractUnfinishedSummary } from './hook-handoff.mjs';
|
|
33
33
|
import { checkForUpdate } from './hook-update.mjs';
|
|
34
34
|
import { handleLLMOptimize } from './hook-optimize.mjs';
|
|
35
|
+
import { silentAutoAdopt, hasAutoAdoptMarker } from './adopt-cli.mjs';
|
|
35
36
|
// plugin-cache-guard.mjs loaded dynamically — pre-2.31.2 installs that auto-upgraded
|
|
36
37
|
// from an older hook-update.mjs SOURCE_FILES (which did not list this module) would
|
|
37
38
|
// crash on static import. Degrade gracefully to no-op when the module is absent.
|
|
@@ -134,21 +135,36 @@ function flushEpisode(episode) {
|
|
|
134
135
|
if (isSignificant) {
|
|
135
136
|
spawnBackground('llm-episode', flushFile);
|
|
136
137
|
|
|
137
|
-
//
|
|
138
|
-
// and
|
|
138
|
+
// v2.33.1: structured flush receipt so Claude sees what mem just captured
|
|
139
|
+
// and the legacy error→fix nudge consolidates here. PostToolUse JSON with
|
|
140
|
+
// hookSpecificOutput.additionalContext reliably renders across CC variants;
|
|
141
|
+
// the old plain-text stdout write was invisible on some variants.
|
|
139
142
|
try {
|
|
140
143
|
const entries = episode.entries || [];
|
|
141
144
|
const hasError = entries.some(e => e.isError);
|
|
142
145
|
const hasEdit = entries.some(e => EDIT_TOOLS.has(e.tool));
|
|
146
|
+
const toolCounts = {};
|
|
147
|
+
for (const e of entries) toolCounts[e.tool] = (toolCounts[e.tool] || 0) + 1;
|
|
148
|
+
const toolSummary = Object.entries(toolCounts)
|
|
149
|
+
.sort((a, b) => b[1] - a[1])
|
|
150
|
+
.slice(0, 3)
|
|
151
|
+
.map(([t, n]) => `${t}×${n}`)
|
|
152
|
+
.join(', ');
|
|
153
|
+
const lines = [`[mem] episode flushed: ${entries.length} entries (${toolSummary})`];
|
|
143
154
|
if (hasError && hasEdit && entries.length >= 3) {
|
|
144
155
|
const editFiles = entries.filter(e => EDIT_TOOLS.has(e.tool)).flatMap(e => e.files || []);
|
|
145
156
|
const uniqueFiles = [...new Set(editFiles)].slice(0, 3);
|
|
146
|
-
const filesHint = uniqueFiles.length > 0 ? ` (
|
|
147
|
-
|
|
148
|
-
`[mem] 💡 Error→fix pattern detected${filesHint}. Consider: mem_save(type="bugfix", lesson_learned="root cause & fix")\n`,
|
|
149
|
-
);
|
|
157
|
+
const filesHint = uniqueFiles.length > 0 ? ` (${uniqueFiles.join(', ')})` : '';
|
|
158
|
+
lines.push(`[mem] 💡 error→fix pattern${filesHint} — consider: mem_save(type="bugfix", lesson_learned="<root cause + fix>")`);
|
|
150
159
|
}
|
|
151
|
-
|
|
160
|
+
process.stdout.write(JSON.stringify({
|
|
161
|
+
suppressOutput: true,
|
|
162
|
+
hookSpecificOutput: {
|
|
163
|
+
hookEventName: 'PostToolUse',
|
|
164
|
+
additionalContext: lines.join('\n'),
|
|
165
|
+
},
|
|
166
|
+
}));
|
|
167
|
+
} catch { /* never block on receipt */ }
|
|
152
168
|
} else {
|
|
153
169
|
try { unlinkSync(flushFile); } catch {}
|
|
154
170
|
}
|
|
@@ -425,6 +441,35 @@ async function handleSessionStart() {
|
|
|
425
441
|
}
|
|
426
442
|
} catch (e) { debugCatch(e, 'session-start-cache-heal'); }
|
|
427
443
|
|
|
444
|
+
// v2.33.0: plugin-mode first-run auto-adopt. /plugin install IS consent to
|
|
445
|
+
// integration — writing the MEMORY.md sentinel once per project on first
|
|
446
|
+
// SessionStart avoids the opt-in friction. Scope is narrow:
|
|
447
|
+
// - gated by CLAUDE_PLUGIN_ROOT (npm/npx installs stay opt-in)
|
|
448
|
+
// - gated by !MEM_NO_AUTO_ADOPT (explicit escape hatch)
|
|
449
|
+
// - gated by !MEM_QUIET_HOOKS (quiet = no side-effects semantics)
|
|
450
|
+
// - first-attempt marker persists in RUNTIME_DIR so a subsequent /unadopt
|
|
451
|
+
// is respected (no re-adopt loop).
|
|
452
|
+
// Failures (user-edited sentinel, budget exceeded, FS errors) are swallowed;
|
|
453
|
+
// the marker is still written so we don't retry on every SessionStart.
|
|
454
|
+
try {
|
|
455
|
+
if (
|
|
456
|
+
process.env.CLAUDE_PLUGIN_ROOT
|
|
457
|
+
&& process.env.MEM_NO_AUTO_ADOPT !== '1'
|
|
458
|
+
&& process.env.MEM_QUIET_HOOKS !== '1'
|
|
459
|
+
) {
|
|
460
|
+
const project = inferProject();
|
|
461
|
+
if (!hasAutoAdoptMarker(RUNTIME_DIR, project)) {
|
|
462
|
+
const cwd = process.env.CLAUDE_PROJECT_DIR || process.cwd();
|
|
463
|
+
const r = silentAutoAdopt({ cwd, markerDir: RUNTIME_DIR, markerKey: project });
|
|
464
|
+
if (r.ok) {
|
|
465
|
+
debugLog('DEBUG', 'session-start-auto-adopt', `action=${r.action} project=${project}`);
|
|
466
|
+
} else {
|
|
467
|
+
debugLog('DEBUG', 'session-start-auto-adopt', `skipped project=${project} reason=${r.reason}`);
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
} catch (e) { debugCatch(e, 'session-start-auto-adopt'); }
|
|
472
|
+
|
|
428
473
|
// Read CC real session_id from hook stdin — used to scope handoff rows so parallel
|
|
429
474
|
// sessions for the same project don't clobber each other (see docs/bug.txt).
|
|
430
475
|
let ccSessionId = null;
|
package/hooks/hooks.json
CHANGED
|
File without changes
|
package/install-metadata.mjs
CHANGED
|
File without changes
|
package/install.mjs
CHANGED
|
File without changes
|
package/lib/activity.mjs
CHANGED
|
File without changes
|
package/lib/doctor-benchmark.mjs
CHANGED
|
File without changes
|
package/lib/git-state.mjs
CHANGED
|
File without changes
|
package/lib/plan-reader.mjs
CHANGED
|
File without changes
|
|
File without changes
|
package/lib/task-reader.mjs
CHANGED
|
File without changes
|
package/mem-cli.mjs
CHANGED
|
File without changes
|
package/memdir.mjs
CHANGED
|
File without changes
|
package/nlp.mjs
CHANGED
|
File without changes
|
package/package.json
CHANGED
package/plugin-cache-guard.mjs
CHANGED
|
File without changes
|
package/project-utils.mjs
CHANGED
|
File without changes
|
|
File without changes
|
package/registry-enricher.mjs
CHANGED
|
File without changes
|
package/registry-github.mjs
CHANGED
|
File without changes
|
package/registry-importer.mjs
CHANGED
|
File without changes
|
package/registry-indexer.mjs
CHANGED
|
File without changes
|
package/registry-retriever.mjs
CHANGED
|
File without changes
|
package/registry-scanner.mjs
CHANGED
|
File without changes
|
package/registry.mjs
CHANGED
|
File without changes
|
package/resource-discovery.mjs
CHANGED
|
File without changes
|
package/schema.mjs
CHANGED
|
File without changes
|
package/scoring-sql.mjs
CHANGED
|
File without changes
|
package/scripts/launch.mjs
CHANGED
|
File without changes
|
|
File without changes
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// Lightweight standalone (~30ms): only imports better-sqlite3, fs, path, os
|
|
4
4
|
// Safety: readonly DB, exit 0 always, 3s timeout
|
|
5
5
|
|
|
6
|
-
import { existsSync, readFileSync, writeFileSync, mkdirSync } from 'fs';
|
|
6
|
+
import { existsSync, readFileSync, writeFileSync, mkdirSync, readdirSync, statSync, unlinkSync } from 'fs';
|
|
7
7
|
import { basename, join } from 'path';
|
|
8
8
|
import { homedir } from 'os';
|
|
9
9
|
|
|
@@ -11,9 +11,20 @@ import { homedir } from 'os';
|
|
|
11
11
|
// point the hook at an isolated DB + cooldown dir without touching the user's real state.
|
|
12
12
|
const DB_PATH = process.env.CLAUDE_MEM_DB_PATH || join(homedir(), '.claude-mem-lite', 'claude-mem-lite.db');
|
|
13
13
|
const RUNTIME_DIR = process.env.CLAUDE_MEM_RUNTIME_DIR || join(homedir(), '.claude-mem-lite', 'runtime');
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
// v2.33.1: cooldown path is session-scoped so same-file-twice within one
|
|
15
|
+
// session never re-injects (was: global file, 5-min window). Cross-session:
|
|
16
|
+
// fresh file, fresh nudges — this is intended. No session_id → fall back to
|
|
17
|
+
// legacy global path so env-less test harnesses still behave.
|
|
18
|
+
const LEGACY_COOLDOWN_PATH = join(RUNTIME_DIR, 'pre-recall-cooldown.json');
|
|
19
|
+
const COOLDOWN_MS = 5 * 60 * 1000; // 5 minutes (used only for legacy fallback)
|
|
20
|
+
const STALE_MS = 10 * 60 * 1000; // 10 minutes cleanup threshold for legacy file
|
|
21
|
+
const SESSION_COOLDOWN_STALE_MS = 24 * 60 * 60 * 1000; // 24h — drop session cooldown files older than this
|
|
22
|
+
|
|
23
|
+
function cooldownPathFor(sessionId) {
|
|
24
|
+
if (!sessionId) return LEGACY_COOLDOWN_PATH;
|
|
25
|
+
const safe = String(sessionId).replace(/[^a-zA-Z0-9_.-]/g, '-').slice(0, 64);
|
|
26
|
+
return join(RUNTIME_DIR, `pre-recall-cooldown-${safe}.json`);
|
|
27
|
+
}
|
|
17
28
|
|
|
18
29
|
// ─── Helpers ────────────────────────────────────────────────────────────────
|
|
19
30
|
|
|
@@ -27,20 +38,40 @@ function inferProject() {
|
|
|
27
38
|
return project;
|
|
28
39
|
}
|
|
29
40
|
|
|
30
|
-
function readCooldown() {
|
|
31
|
-
try { return JSON.parse(readFileSync(
|
|
41
|
+
function readCooldown(cooldownPath) {
|
|
42
|
+
try { return JSON.parse(readFileSync(cooldownPath, 'utf8')); } catch { return {}; }
|
|
32
43
|
}
|
|
33
44
|
|
|
34
|
-
function writeCooldown(data) {
|
|
45
|
+
function writeCooldown(cooldownPath, data, isSessionScoped) {
|
|
35
46
|
try {
|
|
36
47
|
mkdirSync(RUNTIME_DIR, { recursive: true });
|
|
37
|
-
//
|
|
48
|
+
// Legacy (no session_id): stale entries trimmed to 10m window.
|
|
49
|
+
// Session-scoped: keep all entries for the session's lifetime — same-file-twice
|
|
50
|
+
// in one session never re-injects. Old session files GC'd on next write.
|
|
51
|
+
const now = Date.now();
|
|
52
|
+
const cleaned = isSessionScoped ? data : {};
|
|
53
|
+
if (!isSessionScoped) {
|
|
54
|
+
for (const [k, v] of Object.entries(data)) {
|
|
55
|
+
if (now - v < STALE_MS) cleaned[k] = v;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
writeFileSync(cooldownPath, JSON.stringify(cleaned));
|
|
59
|
+
} catch { /* silent */ }
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
// Best-effort GC for session cooldown files older than 24h.
|
|
63
|
+
// Runs at most once per hook invocation, silent on any failure.
|
|
64
|
+
function gcOldSessionCooldowns() {
|
|
65
|
+
try {
|
|
38
66
|
const now = Date.now();
|
|
39
|
-
const
|
|
40
|
-
|
|
41
|
-
|
|
67
|
+
for (const name of readdirSync(RUNTIME_DIR)) {
|
|
68
|
+
if (!name.startsWith('pre-recall-cooldown-') || !name.endsWith('.json')) continue;
|
|
69
|
+
try {
|
|
70
|
+
const p = join(RUNTIME_DIR, name);
|
|
71
|
+
const st = statSync(p);
|
|
72
|
+
if (now - st.mtimeMs > SESSION_COOLDOWN_STALE_MS) unlinkSync(p);
|
|
73
|
+
} catch { /* silent per-entry */ }
|
|
42
74
|
}
|
|
43
|
-
writeFileSync(COOLDOWN_PATH, JSON.stringify(cleaned));
|
|
44
75
|
} catch { /* silent */ }
|
|
45
76
|
}
|
|
46
77
|
|
|
@@ -59,19 +90,29 @@ try {
|
|
|
59
90
|
|
|
60
91
|
// Parse event
|
|
61
92
|
let filePath;
|
|
93
|
+
let sessionId;
|
|
62
94
|
try {
|
|
63
95
|
const event = JSON.parse(input);
|
|
64
96
|
filePath = event.tool_input?.file_path;
|
|
97
|
+
sessionId = event.session_id || null;
|
|
65
98
|
} catch { process.exit(0); }
|
|
66
99
|
|
|
67
100
|
if (!filePath) process.exit(0);
|
|
68
101
|
|
|
69
|
-
//
|
|
70
|
-
|
|
102
|
+
// v2.33.1: session-scoped cooldown. Within one session, same file recalls
|
|
103
|
+
// once; cross-session, each session gets fresh nudges. Legacy 5-min global
|
|
104
|
+
// cooldown only applies when no session_id is present.
|
|
105
|
+
const cooldownPath = cooldownPathFor(sessionId);
|
|
106
|
+
const isSessionScoped = Boolean(sessionId);
|
|
107
|
+
const cooldown = readCooldown(cooldownPath);
|
|
71
108
|
const now = Date.now();
|
|
72
|
-
if (
|
|
73
|
-
process.exit(0);
|
|
109
|
+
if (isSessionScoped) {
|
|
110
|
+
if (cooldown[filePath]) process.exit(0); // already recalled this file in-session
|
|
111
|
+
} else {
|
|
112
|
+
if (cooldown[filePath] && (now - cooldown[filePath]) < COOLDOWN_MS) process.exit(0);
|
|
74
113
|
}
|
|
114
|
+
// Best-effort GC of old session cooldown files (cheap, once per invocation)
|
|
115
|
+
if (isSessionScoped) gcOldSessionCooldowns();
|
|
75
116
|
|
|
76
117
|
// Open DB readonly
|
|
77
118
|
const Database = (await import('better-sqlite3')).default;
|
|
@@ -177,7 +218,7 @@ try {
|
|
|
177
218
|
}));
|
|
178
219
|
// Cooldown applies to BOTH branches so the reminder doesn't spam every Edit.
|
|
179
220
|
cooldown[filePath] = now;
|
|
180
|
-
writeCooldown(cooldown);
|
|
221
|
+
writeCooldown(cooldownPath, cooldown, isSessionScoped);
|
|
181
222
|
} catch {
|
|
182
223
|
// Silent failure — never block editing
|
|
183
224
|
} finally {
|
|
File without changes
|
|
@@ -34,6 +34,22 @@ const BM25_MIN_SCORE = Number(process.env.CLAUDE_MEM_UPS_BM25_MIN || 1e-5);
|
|
|
34
34
|
// survive `shouldSkip` but carry too few tokens to justify an FTS lookup.
|
|
35
35
|
const PROMPT_MIN_LENGTH = 15;
|
|
36
36
|
|
|
37
|
+
// v2.33.1: follow-up prompts ("前面那个", "继续 X", "再看看 Y") are short by
|
|
38
|
+
// nature but semantically depend on prior turns. Once a session has injected
|
|
39
|
+
// memory at least once, relax gates so short follow-ups still get recall.
|
|
40
|
+
// Detection: INJECTED_IDS_FILE count > 0 within DEDUP_STALE_MS window.
|
|
41
|
+
const FOLLOWUP_PROMPT_MIN_LENGTH = 8;
|
|
42
|
+
const FOLLOWUP_BM25_MIN_SCORE = Number(process.env.CLAUDE_MEM_UPS_BM25_MIN_FOLLOWUP || 5e-6);
|
|
43
|
+
|
|
44
|
+
function isFollowUpSession() {
|
|
45
|
+
try {
|
|
46
|
+
const raw = readFileSync(INJECTED_IDS_FILE, 'utf8');
|
|
47
|
+
const { ts, count = 0 } = JSON.parse(raw);
|
|
48
|
+
if (!ts || Date.now() - ts > DEDUP_STALE_MS) return false;
|
|
49
|
+
return count > 0;
|
|
50
|
+
} catch { return false; }
|
|
51
|
+
}
|
|
52
|
+
|
|
37
53
|
// ─── DB Query Functions ─────────────────────────────────────────────────────
|
|
38
54
|
|
|
39
55
|
function searchByFts(db, queryText, project, limit, typeFilter) {
|
|
@@ -255,7 +271,12 @@ async function main() {
|
|
|
255
271
|
// T3 (v2.31): additional raw-length gate on top of shouldSkip's CJK-weighted
|
|
256
272
|
// effective-length check. Suppresses medium-short Latin prompts ("run tests",
|
|
257
273
|
// "fix bug now") that carry too few content tokens for a meaningful FTS lookup.
|
|
258
|
-
|
|
274
|
+
// v2.33.1: follow-up prompts in an already-active session get a lower gate —
|
|
275
|
+
// short continuations ("前面那个?", "does it work?") depend on prior context.
|
|
276
|
+
const followUp = isFollowUpSession();
|
|
277
|
+
const promptMinLen = followUp ? FOLLOWUP_PROMPT_MIN_LENGTH : PROMPT_MIN_LENGTH;
|
|
278
|
+
if (promptText.trim().length < promptMinLen) return;
|
|
279
|
+
const bm25Floor = followUp ? FOLLOWUP_BM25_MIN_SCORE : BM25_MIN_SCORE;
|
|
259
280
|
|
|
260
281
|
let db;
|
|
261
282
|
try {
|
|
@@ -275,7 +296,7 @@ async function main() {
|
|
|
275
296
|
const errSig = extractErrorSignature(promptText);
|
|
276
297
|
const sigRows = errSig
|
|
277
298
|
? searchByFts(db, errSig.signature, project, 2, 'bugfix').filter(r =>
|
|
278
|
-
typeof r.relevance === 'number' && Math.abs(r.relevance) >=
|
|
299
|
+
typeof r.relevance === 'number' && Math.abs(r.relevance) >= bm25Floor
|
|
279
300
|
)
|
|
280
301
|
: [];
|
|
281
302
|
|
|
@@ -299,7 +320,7 @@ async function main() {
|
|
|
299
320
|
// no relevance and are always kept — file-scoped recall is presumed
|
|
300
321
|
// intentional and has its own relevance signal (the file name match).
|
|
301
322
|
ftsRows = ftsRows.filter(r =>
|
|
302
|
-
typeof r.relevance === 'number' && Math.abs(r.relevance) >=
|
|
323
|
+
typeof r.relevance === 'number' && Math.abs(r.relevance) >= bm25Floor
|
|
303
324
|
);
|
|
304
325
|
|
|
305
326
|
// Merge: FTS results first, then file results, deduplicated
|
package/secret-scrub.mjs
CHANGED
|
File without changes
|
package/server-internals.mjs
CHANGED
|
File without changes
|
package/server.mjs
CHANGED
|
File without changes
|
package/skill.md
CHANGED
|
File without changes
|
package/skip-tools.mjs
CHANGED
|
File without changes
|
package/source-files.mjs
CHANGED
|
File without changes
|
package/stop-words.mjs
CHANGED
|
File without changes
|
package/synonyms.mjs
CHANGED
|
File without changes
|
package/tfidf.mjs
CHANGED
|
File without changes
|
package/tier.mjs
CHANGED
|
File without changes
|
package/tool-schemas.mjs
CHANGED
|
File without changes
|
package/utils.mjs
CHANGED
|
File without changes
|