claude-mem-lite 2.37.0 → 2.38.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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/lib/id-routing.mjs +37 -0
- package/mem-cli.mjs +202 -73
- package/package.json +2 -1
- package/server.mjs +9 -11
- package/source-files.mjs +1 -0
- package/tool-schemas.mjs +3 -1
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
// Shared probe for "ID-not-found-in-requested-source" hints.
|
|
2
|
+
// Used by CLI cmdGet (mem-cli.mjs) and MCP mem_get (server.mjs) so both
|
|
3
|
+
// produce consistent redirect hints — if the probe schema drifts, both
|
|
4
|
+
// paths update together.
|
|
5
|
+
//
|
|
6
|
+
// The formatter stays per-call-site because CLI and MCP surface format
|
|
7
|
+
// differently (stderr vs response text); only the SQL layer is shared.
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Probe the observations / session_summaries / user_prompts tables for any
|
|
11
|
+
* of the given numeric IDs, excluding the sources the caller already queried.
|
|
12
|
+
*
|
|
13
|
+
* @param {import('better-sqlite3').Database} db
|
|
14
|
+
* @param {number[]} ids Numeric IDs to probe (non-negative ints).
|
|
15
|
+
* @param {Set<'obs'|'session'|'prompt'>} excludeSrcs Sources to skip.
|
|
16
|
+
* @returns {{obs:number[], session:number[], prompt:number[]}}
|
|
17
|
+
*/
|
|
18
|
+
export function probeOtherSources(db, ids, excludeSrcs) {
|
|
19
|
+
const result = { obs: [], session: [], prompt: [] };
|
|
20
|
+
if (!ids || ids.length === 0) return result;
|
|
21
|
+
const placeholders = ids.map(() => '?').join(',');
|
|
22
|
+
try {
|
|
23
|
+
if (!excludeSrcs.has('obs')) {
|
|
24
|
+
const hits = db.prepare(`SELECT id FROM observations WHERE id IN (${placeholders})`).all(...ids);
|
|
25
|
+
result.obs = hits.map(r => r.id);
|
|
26
|
+
}
|
|
27
|
+
if (!excludeSrcs.has('session')) {
|
|
28
|
+
const hits = db.prepare(`SELECT id FROM session_summaries WHERE id IN (${placeholders})`).all(...ids);
|
|
29
|
+
result.session = hits.map(r => r.id);
|
|
30
|
+
}
|
|
31
|
+
if (!excludeSrcs.has('prompt')) {
|
|
32
|
+
const hits = db.prepare(`SELECT id FROM user_prompts WHERE id IN (${placeholders})`).all(...ids);
|
|
33
|
+
result.prompt = hits.map(r => r.id);
|
|
34
|
+
}
|
|
35
|
+
} catch { /* best-effort hint; never block the caller */ }
|
|
36
|
+
return result;
|
|
37
|
+
}
|
package/mem-cli.mjs
CHANGED
|
@@ -15,6 +15,7 @@ import { searchResources } from './registry-retriever.mjs';
|
|
|
15
15
|
import { optimizePreview, optimizeRun } from './hook-optimize.mjs';
|
|
16
16
|
import { buildSessionContextLines } from './hook-context.mjs';
|
|
17
17
|
import { cmdAdopt, cmdUnadopt } from './adopt-cli.mjs';
|
|
18
|
+
import { probeOtherSources as probeIdSources } from './lib/id-routing.mjs';
|
|
18
19
|
import { basename } from 'path';
|
|
19
20
|
import { readFileSync } from 'fs';
|
|
20
21
|
|
|
@@ -77,6 +78,30 @@ function fmtDateShort(iso) {
|
|
|
77
78
|
return iso.slice(0, 10); // YYYY-MM-DD
|
|
78
79
|
}
|
|
79
80
|
|
|
81
|
+
// Parse an ID token from a command positional argument.
|
|
82
|
+
// Accepts: `123`, `#123`, `P#123` / `p123` (prompt), `S#123` / `s123` (session).
|
|
83
|
+
// Returns { source: 'obs'|'session'|'prompt'|null, id: number } or null if unparseable.
|
|
84
|
+
// source===null means no explicit prefix — caller picks default (typically 'obs').
|
|
85
|
+
function parseIdToken(raw) {
|
|
86
|
+
const m = /^([PpSs]?)#?(\d+)$/.exec(String(raw).trim());
|
|
87
|
+
if (!m) return null;
|
|
88
|
+
const p = m[1].toUpperCase();
|
|
89
|
+
const id = parseInt(m[2], 10);
|
|
90
|
+
if (!Number.isFinite(id) || id <= 0) return null;
|
|
91
|
+
const source = p === 'P' ? 'prompt' : p === 'S' ? 'session' : null;
|
|
92
|
+
return { source, id };
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
// Format the shared `probeIdSources` output as CLI hint strings.
|
|
96
|
+
// Example: ["#5419 (obs)", "P#5417 (prompt)"] — callers join with "; ".
|
|
97
|
+
function formatProbeHints(probe) {
|
|
98
|
+
const hints = [];
|
|
99
|
+
if (probe.obs.length > 0) hints.push(`#${probe.obs.join(', #')} (obs)`);
|
|
100
|
+
if (probe.session.length > 0) hints.push(`S#${probe.session.join(', S#')} (session)`);
|
|
101
|
+
if (probe.prompt.length > 0) hints.push(`P#${probe.prompt.join(', P#')} (prompt)`);
|
|
102
|
+
return hints;
|
|
103
|
+
}
|
|
104
|
+
|
|
80
105
|
// ─── Commands ────────────────────────────────────────────────────────────────
|
|
81
106
|
|
|
82
107
|
function cmdSearch(db, args) {
|
|
@@ -571,57 +596,107 @@ function cmdRecall(db, args) {
|
|
|
571
596
|
}
|
|
572
597
|
}
|
|
573
598
|
|
|
599
|
+
const OBS_FIELDS = ['id', 'type', 'title', 'subtitle', 'narrative', 'text', 'facts', 'concepts', 'lesson_learned', 'search_aliases', 'files_read', 'files_modified', 'project', 'created_at', 'memory_session_id', 'prompt_number', 'importance', 'related_ids', 'access_count', 'branch', 'superseded_at', 'superseded_by', 'last_accessed_at'];
|
|
600
|
+
|
|
601
|
+
function renderObsRows(db, ids, requestedFields) {
|
|
602
|
+
const placeholders = ids.map(() => '?').join(',');
|
|
603
|
+
try {
|
|
604
|
+
db.prepare(`UPDATE observations SET access_count = COALESCE(access_count, 0) + 1, last_accessed_at = ? WHERE id IN (${placeholders})`).run(Date.now(), ...ids);
|
|
605
|
+
autoBoostIfNeeded(db, ids);
|
|
606
|
+
} catch { /* non-critical: FTS5 trigger may fail on corrupted index */ }
|
|
607
|
+
|
|
608
|
+
const rows = db.prepare(`SELECT * FROM observations WHERE id IN (${placeholders}) ORDER BY created_at_epoch ASC`).all(...ids);
|
|
609
|
+
if (rows.length === 0) return null;
|
|
610
|
+
const fields = requestedFields || OBS_FIELDS;
|
|
611
|
+
const parts = [];
|
|
612
|
+
for (const r of rows) {
|
|
613
|
+
const lines = [`#${r.id} [${r.type}] ${fmtDateShort(r.created_at)}`];
|
|
614
|
+
for (const f of fields) {
|
|
615
|
+
if (f === 'id' || f === 'type' || f === 'created_at') continue;
|
|
616
|
+
const val = r[f];
|
|
617
|
+
if (val === null || val === undefined || val === '') continue;
|
|
618
|
+
if (f === 'text' && r.narrative && typeof val === 'string' && val.startsWith(r.narrative)) continue;
|
|
619
|
+
const maxLen = f === 'narrative' ? 1000 : f === 'lesson_learned' ? 500 : f === 'text' ? 500 : 200;
|
|
620
|
+
const display = typeof val === 'string' && val.length > maxLen ? val.slice(0, maxLen) + '…' : val;
|
|
621
|
+
lines.push(`${f}: ${display}`);
|
|
622
|
+
}
|
|
623
|
+
parts.push(lines.join('\n'));
|
|
624
|
+
}
|
|
625
|
+
return { text: parts.join('\n\n'), count: rows.length };
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
function renderSessionRows(db, ids) {
|
|
629
|
+
const placeholders = ids.map(() => '?').join(',');
|
|
630
|
+
const rows = db.prepare(`SELECT * FROM session_summaries WHERE id IN (${placeholders}) ORDER BY created_at_epoch ASC`).all(...ids);
|
|
631
|
+
if (rows.length === 0) return null;
|
|
632
|
+
const parts = [];
|
|
633
|
+
for (const r of rows) {
|
|
634
|
+
const lines = [`S#${r.id} ${fmtDateShort(r.created_at)}`];
|
|
635
|
+
if (r.request) lines.push(`Request: ${r.request}`);
|
|
636
|
+
if (r.completed) lines.push(`Completed: ${r.completed}`);
|
|
637
|
+
if (r.investigated) lines.push(`Investigated: ${r.investigated}`);
|
|
638
|
+
if (r.learned) lines.push(`Learned: ${r.learned}`);
|
|
639
|
+
if (r.next_steps) lines.push(`Next steps: ${r.next_steps}`);
|
|
640
|
+
if (r.project) lines.push(`Project: ${r.project}`);
|
|
641
|
+
parts.push(lines.join('\n'));
|
|
642
|
+
}
|
|
643
|
+
return { text: parts.join('\n\n'), count: rows.length };
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
function renderPromptRows(db, ids) {
|
|
647
|
+
const placeholders = ids.map(() => '?').join(',');
|
|
648
|
+
const rows = db.prepare(`SELECT * FROM user_prompts WHERE id IN (${placeholders}) ORDER BY created_at_epoch ASC`).all(...ids);
|
|
649
|
+
if (rows.length === 0) return null;
|
|
650
|
+
const parts = [];
|
|
651
|
+
for (const r of rows) {
|
|
652
|
+
const lines = [`P#${r.id} ${fmtDateShort(r.created_at)}`];
|
|
653
|
+
if (r.prompt_text) lines.push(`Text: ${r.prompt_text}`);
|
|
654
|
+
if (r.content_session_id) lines.push(`Session: ${r.content_session_id}`);
|
|
655
|
+
parts.push(lines.join('\n'));
|
|
656
|
+
}
|
|
657
|
+
return { text: parts.join('\n\n'), count: rows.length };
|
|
658
|
+
}
|
|
659
|
+
|
|
574
660
|
function cmdGet(db, args) {
|
|
575
661
|
const { positional, flags } = parseArgs(args);
|
|
576
662
|
const idStr = positional.join(',');
|
|
577
663
|
if (!idStr) {
|
|
578
|
-
fail('[mem] Usage: mem get <id1,id2,...> [--source obs|session|prompt] [--fields f1,f2,...]'
|
|
664
|
+
fail('[mem] Usage: mem get <id1,id2,...> [--source obs|session|prompt] [--fields f1,f2,...]\n' +
|
|
665
|
+
' IDs accept prefix from search output: #123 (obs), P#123 (prompt), S#123 (session).');
|
|
579
666
|
return;
|
|
580
667
|
}
|
|
581
668
|
|
|
582
|
-
const
|
|
583
|
-
|
|
669
|
+
const tokens = idStr.split(',').map(s => s.trim()).filter(Boolean);
|
|
670
|
+
const unparseable = [];
|
|
671
|
+
const parsed = [];
|
|
672
|
+
for (const t of tokens) {
|
|
673
|
+
const p = parseIdToken(t);
|
|
674
|
+
if (p) parsed.push(p);
|
|
675
|
+
else unparseable.push(t);
|
|
676
|
+
}
|
|
677
|
+
if (unparseable.length > 0) {
|
|
678
|
+
process.stderr.write(`[mem] Ignoring unparseable ID token(s): ${unparseable.join(', ')}\n`);
|
|
679
|
+
}
|
|
680
|
+
if (parsed.length === 0) {
|
|
584
681
|
fail('[mem] No valid IDs provided');
|
|
585
682
|
return;
|
|
586
683
|
}
|
|
587
684
|
|
|
588
|
-
|
|
589
|
-
const
|
|
590
|
-
|
|
591
|
-
if (
|
|
592
|
-
|
|
593
|
-
if (rows.length === 0) { fail('[mem] No sessions found for given IDs'); return; }
|
|
594
|
-
const parts = [];
|
|
595
|
-
for (const r of rows) {
|
|
596
|
-
const lines = [`S#${r.id} ${fmtDateShort(r.created_at)}`];
|
|
597
|
-
if (r.request) lines.push(`Request: ${r.request}`);
|
|
598
|
-
if (r.completed) lines.push(`Completed: ${r.completed}`);
|
|
599
|
-
if (r.investigated) lines.push(`Investigated: ${r.investigated}`);
|
|
600
|
-
if (r.learned) lines.push(`Learned: ${r.learned}`);
|
|
601
|
-
if (r.next_steps) lines.push(`Next steps: ${r.next_steps}`);
|
|
602
|
-
if (r.project) lines.push(`Project: ${r.project}`);
|
|
603
|
-
parts.push(lines.join('\n'));
|
|
604
|
-
}
|
|
605
|
-
out(parts.join('\n\n'));
|
|
685
|
+
// Explicit --source overrides any prefix; otherwise each token's prefix routes individually.
|
|
686
|
+
const explicit = flags.source;
|
|
687
|
+
const validSources = new Set(['obs', 'session', 'prompt']);
|
|
688
|
+
if (explicit && !validSources.has(explicit)) {
|
|
689
|
+
fail(`[mem] Invalid --source "${explicit}". Use: obs, session, prompt`);
|
|
606
690
|
return;
|
|
607
691
|
}
|
|
608
692
|
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
for (const r of rows) {
|
|
614
|
-
const lines = [`P#${r.id} ${fmtDateShort(r.created_at)}`];
|
|
615
|
-
if (r.prompt_text) lines.push(`Text: ${r.prompt_text}`);
|
|
616
|
-
if (r.content_session_id) lines.push(`Session: ${r.content_session_id}`);
|
|
617
|
-
parts.push(lines.join('\n'));
|
|
618
|
-
}
|
|
619
|
-
out(parts.join('\n\n'));
|
|
620
|
-
return;
|
|
693
|
+
const bySrc = { obs: [], session: [], prompt: [] };
|
|
694
|
+
for (const p of parsed) {
|
|
695
|
+
const src = explicit || p.source || 'obs';
|
|
696
|
+
bySrc[src].push(p.id);
|
|
621
697
|
}
|
|
622
698
|
|
|
623
|
-
//
|
|
624
|
-
const OBS_FIELDS = ['id', 'type', 'title', 'subtitle', 'narrative', 'text', 'facts', 'concepts', 'lesson_learned', 'search_aliases', 'files_read', 'files_modified', 'project', 'created_at', 'memory_session_id', 'prompt_number', 'importance', 'related_ids', 'access_count', 'branch', 'superseded_at', 'superseded_by', 'last_accessed_at'];
|
|
699
|
+
// Validate --fields against obs schema (only meaningful for obs rows).
|
|
625
700
|
let requestedFields = null;
|
|
626
701
|
if (flags.fields) {
|
|
627
702
|
const allRequested = flags.fields.split(',').map(s => s.trim());
|
|
@@ -636,50 +711,82 @@ function cmdGet(db, args) {
|
|
|
636
711
|
}
|
|
637
712
|
}
|
|
638
713
|
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
fail('[mem] No observations found for given IDs');
|
|
653
|
-
return;
|
|
714
|
+
const sections = [];
|
|
715
|
+
let totalFound = 0;
|
|
716
|
+
if (bySrc.obs.length > 0) {
|
|
717
|
+
const s = renderObsRows(db, bySrc.obs, requestedFields);
|
|
718
|
+
if (s) { sections.push(s.text); totalFound += s.count; }
|
|
719
|
+
}
|
|
720
|
+
if (bySrc.session.length > 0) {
|
|
721
|
+
const s = renderSessionRows(db, bySrc.session);
|
|
722
|
+
if (s) { sections.push(s.text); totalFound += s.count; }
|
|
723
|
+
}
|
|
724
|
+
if (bySrc.prompt.length > 0) {
|
|
725
|
+
const s = renderPromptRows(db, bySrc.prompt);
|
|
726
|
+
if (s) { sections.push(s.text); totalFound += s.count; }
|
|
654
727
|
}
|
|
655
728
|
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
const
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
const maxLen = f === 'narrative' ? 1000 : f === 'lesson_learned' ? 500 : f === 'text' ? 500 : 200;
|
|
667
|
-
const display = typeof val === 'string' && val.length > maxLen ? val.slice(0, maxLen) + '…' : val;
|
|
668
|
-
lines.push(`${f}: ${display}`);
|
|
669
|
-
}
|
|
670
|
-
parts.push(lines.join('\n'));
|
|
729
|
+
if (totalFound === 0) {
|
|
730
|
+
// Probe the OTHER sources so the caller can retry with the right prefix.
|
|
731
|
+
const queried = new Set(Object.entries(bySrc).filter(([, v]) => v.length > 0).map(([k]) => k));
|
|
732
|
+
const allIds = parsed.map(p => p.id);
|
|
733
|
+
const probe = probeIdSources(db, allIds, queried);
|
|
734
|
+
const hits = formatProbeHints(probe);
|
|
735
|
+
const hint = hits.length > 0 ? ` Try: ${hits.join('; ')}.` : '';
|
|
736
|
+
const queriedList = [...queried].join(', ');
|
|
737
|
+
fail(`[mem] No records found in source(s) [${queriedList}] for the given ID(s).${hint}`);
|
|
738
|
+
return;
|
|
671
739
|
}
|
|
672
740
|
|
|
673
|
-
out(
|
|
741
|
+
out(sections.join('\n\n'));
|
|
674
742
|
}
|
|
675
743
|
|
|
676
744
|
function cmdTimeline(db, args) {
|
|
677
745
|
const { positional, flags } = parseArgs(args);
|
|
678
|
-
let anchorId = parseInt(flags.anchor, 10);
|
|
679
746
|
const before = parseInt(flags.before, 10) || 5;
|
|
680
747
|
const after = parseInt(flags.after, 10) || 5;
|
|
681
748
|
const project = flags.project ? resolveProject(db, flags.project) : null;
|
|
682
749
|
|
|
750
|
+
// Parse --anchor, accepting P#/S#/# prefix so callers can paste search-result IDs verbatim.
|
|
751
|
+
// For prompt/session anchors, resolve to the nearest-in-time observation so timeline semantics
|
|
752
|
+
// (before/after observations) still apply.
|
|
753
|
+
let anchorId = null;
|
|
754
|
+
let anchorNote = null; // hint line for output when anchor was resolved via conversion
|
|
755
|
+
if (flags.anchor !== undefined && flags.anchor !== true) {
|
|
756
|
+
const parsed = parseIdToken(flags.anchor);
|
|
757
|
+
if (!parsed) {
|
|
758
|
+
fail(`[mem] Invalid --anchor "${flags.anchor}". Expected N, #N, P#N, or S#N.`);
|
|
759
|
+
return;
|
|
760
|
+
}
|
|
761
|
+
if (parsed.source === 'prompt') {
|
|
762
|
+
const row = db.prepare('SELECT created_at_epoch FROM user_prompts WHERE id = ?').get(parsed.id);
|
|
763
|
+
if (!row) { fail(`[mem] Prompt P#${parsed.id} not found`); return; }
|
|
764
|
+
const proj = project;
|
|
765
|
+
const nearest = db.prepare(`
|
|
766
|
+
SELECT id FROM observations
|
|
767
|
+
WHERE COALESCE(compressed_into, 0) = 0 ${proj ? 'AND project = ?' : ''}
|
|
768
|
+
ORDER BY ABS(created_at_epoch - ?) ASC LIMIT 1
|
|
769
|
+
`).get(...(proj ? [proj, row.created_at_epoch] : [row.created_at_epoch]));
|
|
770
|
+
if (!nearest) { fail(`[mem] No observations near P#${parsed.id}`); return; }
|
|
771
|
+
anchorId = nearest.id;
|
|
772
|
+
anchorNote = `(anchored to #${nearest.id}, closest obs to P#${parsed.id})`;
|
|
773
|
+
} else if (parsed.source === 'session') {
|
|
774
|
+
const row = db.prepare('SELECT created_at_epoch FROM session_summaries WHERE id = ?').get(parsed.id);
|
|
775
|
+
if (!row) { fail(`[mem] Session S#${parsed.id} not found`); return; }
|
|
776
|
+
const proj = project;
|
|
777
|
+
const nearest = db.prepare(`
|
|
778
|
+
SELECT id FROM observations
|
|
779
|
+
WHERE COALESCE(compressed_into, 0) = 0 ${proj ? 'AND project = ?' : ''}
|
|
780
|
+
ORDER BY ABS(created_at_epoch - ?) ASC LIMIT 1
|
|
781
|
+
`).get(...(proj ? [proj, row.created_at_epoch] : [row.created_at_epoch]));
|
|
782
|
+
if (!nearest) { fail(`[mem] No observations near S#${parsed.id}`); return; }
|
|
783
|
+
anchorId = nearest.id;
|
|
784
|
+
anchorNote = `(anchored to #${nearest.id}, closest obs to S#${parsed.id})`;
|
|
785
|
+
} else {
|
|
786
|
+
anchorId = parsed.id;
|
|
787
|
+
}
|
|
788
|
+
}
|
|
789
|
+
|
|
683
790
|
// Support query-based anchor: `timeline --query "search terms"` or positional
|
|
684
791
|
// Uses recency-weighted BM25 + project filter (aligned with MCP mem_timeline)
|
|
685
792
|
const queryStr = flags.query || positional.join(' ');
|
|
@@ -773,7 +880,7 @@ function cmdTimeline(db, args) {
|
|
|
773
880
|
|
|
774
881
|
const all = [...beforeRows.reverse(), anchor, ...afterRows];
|
|
775
882
|
|
|
776
|
-
out(`[mem] Timeline around #${anchorId}:`);
|
|
883
|
+
out(`[mem] Timeline around #${anchorId}${anchorNote ? ' ' + anchorNote : ''}:`);
|
|
777
884
|
for (const r of all) {
|
|
778
885
|
const marker = r.id === anchorId ? ' <--' : '';
|
|
779
886
|
const time = relativeTime(r.created_at_epoch);
|
|
@@ -1162,7 +1269,19 @@ function cmdDelete(db, args) {
|
|
|
1162
1269
|
return;
|
|
1163
1270
|
}
|
|
1164
1271
|
|
|
1165
|
-
|
|
1272
|
+
// delete operates on observations only. Reject P#/S# explicitly so callers aren't
|
|
1273
|
+
// surprised by silent NaN filtering when they paste search-output IDs.
|
|
1274
|
+
const tokens = idStr.split(',').map(s => s.trim()).filter(Boolean);
|
|
1275
|
+
const nonObs = tokens.filter(t => /^[PpSs]#?\d+$/.test(t));
|
|
1276
|
+
if (nonObs.length > 0) {
|
|
1277
|
+
fail(`[mem] delete only works on observations. Rejected: ${nonObs.join(', ')}. ` +
|
|
1278
|
+
`Prompts and sessions are append-only — inspect with \`mem get P#N --source prompt\` / \`--source session\`.`);
|
|
1279
|
+
return;
|
|
1280
|
+
}
|
|
1281
|
+
const ids = tokens.map(t => {
|
|
1282
|
+
const p = parseIdToken(t);
|
|
1283
|
+
return p && p.source === null ? p.id : NaN;
|
|
1284
|
+
}).filter(n => !isNaN(n));
|
|
1166
1285
|
if (ids.length === 0) {
|
|
1167
1286
|
fail('[mem] No valid IDs provided');
|
|
1168
1287
|
return;
|
|
@@ -1215,7 +1334,14 @@ function cmdDelete(db, args) {
|
|
|
1215
1334
|
|
|
1216
1335
|
function cmdUpdate(db, args) {
|
|
1217
1336
|
const { positional, flags } = parseArgs(args);
|
|
1218
|
-
const
|
|
1337
|
+
const raw = positional[0];
|
|
1338
|
+
if (raw && /^[PpSs]#?\d+$/.test(String(raw).trim())) {
|
|
1339
|
+
fail(`[mem] update only works on observations. Rejected: ${raw}. ` +
|
|
1340
|
+
`Prompts and sessions are append-only.`);
|
|
1341
|
+
return;
|
|
1342
|
+
}
|
|
1343
|
+
const parsed = raw ? parseIdToken(raw) : null;
|
|
1344
|
+
const id = parsed && parsed.source === null ? parsed.id : parseInt(raw, 10);
|
|
1219
1345
|
if (!id || isNaN(id)) {
|
|
1220
1346
|
fail('[mem] Usage: mem update <id> [--title T] [--type T] [--importance N] [--lesson T] [--narrative T] [--concepts T]');
|
|
1221
1347
|
return;
|
|
@@ -1919,11 +2045,14 @@ Commands:
|
|
|
1919
2045
|
--limit N Max results (default 10)
|
|
1920
2046
|
|
|
1921
2047
|
get <id1,id2,...> Get full details by ID
|
|
1922
|
-
|
|
1923
|
-
|
|
2048
|
+
IDs accept search-output prefixes: #123 (obs), P#123 (prompt), S#123 (session).
|
|
2049
|
+
Bare N defaults to obs. Mixed prefixes in one call route each token correctly.
|
|
2050
|
+
--source S Force record type (obs|session|prompt); overrides prefixes.
|
|
2051
|
+
--fields f1,f2,... Select specific fields to return (observations only).
|
|
1924
2052
|
|
|
1925
2053
|
timeline Show observations around an anchor (shows recent if no anchor)
|
|
1926
|
-
--anchor ID Center on this
|
|
2054
|
+
--anchor ID Center on this ID. Accepts N, #N, P#N, or S#N — P#/S# anchors
|
|
2055
|
+
resolve to the nearest-in-time observation in the same project.
|
|
1927
2056
|
--query "text" Find anchor by FTS5 search
|
|
1928
2057
|
--before N Show N before anchor (default 5)
|
|
1929
2058
|
--after N Show N after anchor (default 5)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-mem-lite",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.38.0",
|
|
4
4
|
"description": "Lightweight persistent memory system for Claude Code",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
"lib/stats-quality.mjs",
|
|
52
52
|
"lib/low-signal-patterns.mjs",
|
|
53
53
|
"lib/citation-tracker.mjs",
|
|
54
|
+
"lib/id-routing.mjs",
|
|
54
55
|
"registry.mjs",
|
|
55
56
|
"registry-retriever.mjs",
|
|
56
57
|
"registry-indexer.mjs",
|
package/server.mjs
CHANGED
|
@@ -27,6 +27,7 @@ import { basename, join } from 'path';
|
|
|
27
27
|
import { homedir } from 'os';
|
|
28
28
|
import { ensureRegistryDb, upsertResource } from './registry.mjs';
|
|
29
29
|
import { searchResources } from './registry-retriever.mjs';
|
|
30
|
+
import { probeOtherSources as probeIdSources } from './lib/id-routing.mjs';
|
|
30
31
|
import { getVocabulary, rebuildVocabulary, _resetVocabCache, computeVector, vectorSearch, rrfMerge } from './tfidf.mjs';
|
|
31
32
|
import { createRequire } from 'module';
|
|
32
33
|
|
|
@@ -898,17 +899,14 @@ server.registerTool(
|
|
|
898
899
|
}
|
|
899
900
|
|
|
900
901
|
if (rows.length === 0) {
|
|
901
|
-
//
|
|
902
|
-
//
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
}
|
|
910
|
-
} catch { /* best-effort hint */ }
|
|
911
|
-
}
|
|
902
|
+
// Symmetric probe via shared lib/id-routing.mjs so CLI cmdGet and MCP mem_get
|
|
903
|
+
// stay aligned if a table's ID semantics change.
|
|
904
|
+
const probe = probeIdSources(db, args.ids, new Set([source]));
|
|
905
|
+
const hints = [];
|
|
906
|
+
if (probe.obs.length > 0) hints.push(`#${probe.obs.join(', #')} (obs — use source='obs')`);
|
|
907
|
+
if (probe.session.length > 0) hints.push(`S#${probe.session.join(', S#')} (session — use source='session')`);
|
|
908
|
+
if (probe.prompt.length > 0) hints.push(`P#${probe.prompt.join(', P#')} (prompt — use source='prompt')`);
|
|
909
|
+
const hint = hints.length > 0 ? ` Try: ${hints.join('; ')}.` : '';
|
|
912
910
|
const msg = `No ${sourceLabel} found for given IDs.${hint}`;
|
|
913
911
|
return { content: [{ type: 'text', text: fieldsNote ? `${msg}\n\n${fieldsNote}` : msg }] };
|
|
914
912
|
}
|
package/source-files.mjs
CHANGED
package/tool-schemas.mjs
CHANGED
|
@@ -275,7 +275,9 @@ export const tools = [
|
|
|
275
275
|
' - A mem_search hit looks relevant and you need the supporting detail\n' +
|
|
276
276
|
' - For session (S#) or prompt (P#) hits, pass source="session" or "prompt"\n' +
|
|
277
277
|
'\n' +
|
|
278
|
-
'
|
|
278
|
+
'On miss, response includes "Try: …" hint listing other sources the ID lives in.\n' +
|
|
279
|
+
'\n' +
|
|
280
|
+
'Equivalent CLI: claude-mem-lite get <id>[,<id>,...] — accepts P#/S#/# prefix.',
|
|
279
281
|
inputSchema: memGetSchema,
|
|
280
282
|
},
|
|
281
283
|
{
|