@claude-flow/cli 3.1.0-alpha.22 → 3.1.0-alpha.24

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.
@@ -0,0 +1,650 @@
1
+ #!/usr/bin/env node
2
+ /**
3
+ * Intelligence Layer (ADR-050)
4
+ *
5
+ * Closes the intelligence loop by wiring PageRank-ranked memory into
6
+ * the hook system. Pure CJS — no ESM imports of @claude-flow/memory.
7
+ *
8
+ * Data files (all under .claude-flow/data/):
9
+ * auto-memory-store.json — written by auto-memory-hook.mjs
10
+ * graph-state.json — serialized graph (nodes + edges + pageRanks)
11
+ * ranked-context.json — pre-computed ranked entries for fast lookup
12
+ * pending-insights.jsonl — append-only edit/task log
13
+ */
14
+
15
+ 'use strict';
16
+
17
+ const fs = require('fs');
18
+ const path = require('path');
19
+
20
+ const DATA_DIR = path.join(process.cwd(), '.claude-flow', 'data');
21
+ const STORE_PATH = path.join(DATA_DIR, 'auto-memory-store.json');
22
+ const GRAPH_PATH = path.join(DATA_DIR, 'graph-state.json');
23
+ const RANKED_PATH = path.join(DATA_DIR, 'ranked-context.json');
24
+ const PENDING_PATH = path.join(DATA_DIR, 'pending-insights.jsonl');
25
+ const SESSION_DIR = path.join(process.cwd(), '.claude-flow', 'sessions');
26
+ const SESSION_FILE = path.join(SESSION_DIR, 'current.json');
27
+
28
+ // ── Stop words for trigram matching ──────────────────────────────────────────
29
+
30
+ const STOP_WORDS = new Set([
31
+ 'the', 'a', 'an', 'is', 'are', 'was', 'were', 'be', 'been', 'being',
32
+ 'have', 'has', 'had', 'do', 'does', 'did', 'will', 'would', 'could',
33
+ 'should', 'may', 'might', 'shall', 'can', 'to', 'of', 'in', 'for',
34
+ 'on', 'with', 'at', 'by', 'from', 'as', 'into', 'through', 'during',
35
+ 'before', 'after', 'and', 'but', 'or', 'nor', 'not', 'so', 'yet',
36
+ 'both', 'either', 'neither', 'each', 'every', 'all', 'any', 'few',
37
+ 'more', 'most', 'other', 'some', 'such', 'no', 'only', 'own', 'same',
38
+ 'than', 'too', 'very', 'just', 'because', 'if', 'when', 'which',
39
+ 'who', 'whom', 'this', 'that', 'these', 'those', 'it', 'its',
40
+ ]);
41
+
42
+ // ── Helpers ──────────────────────────────────────────────────────────────────
43
+
44
+ function ensureDataDir() {
45
+ if (!fs.existsSync(DATA_DIR)) fs.mkdirSync(DATA_DIR, { recursive: true });
46
+ }
47
+
48
+ function readJSON(filePath) {
49
+ try {
50
+ if (fs.existsSync(filePath)) return JSON.parse(fs.readFileSync(filePath, 'utf-8'));
51
+ } catch { /* corrupt file — start fresh */ }
52
+ return null;
53
+ }
54
+
55
+ function writeJSON(filePath, data) {
56
+ ensureDataDir();
57
+ fs.writeFileSync(filePath, JSON.stringify(data, null, 2), 'utf-8');
58
+ }
59
+
60
+ function tokenize(text) {
61
+ if (!text) return [];
62
+ return text.toLowerCase()
63
+ .replace(/[^a-z0-9\s-]/g, ' ')
64
+ .split(/\s+/)
65
+ .filter(w => w.length > 2 && !STOP_WORDS.has(w));
66
+ }
67
+
68
+ function trigrams(words) {
69
+ const t = new Set();
70
+ for (const w of words) {
71
+ for (let i = 0; i <= w.length - 3; i++) t.add(w.slice(i, i + 3));
72
+ }
73
+ return t;
74
+ }
75
+
76
+ function jaccardSimilarity(setA, setB) {
77
+ if (setA.size === 0 && setB.size === 0) return 0;
78
+ let intersection = 0;
79
+ for (const item of setA) { if (setB.has(item)) intersection++; }
80
+ return intersection / (setA.size + setB.size - intersection);
81
+ }
82
+
83
+ // ── Session state helpers ────────────────────────────────────────────────────
84
+
85
+ function sessionGet(key) {
86
+ try {
87
+ if (!fs.existsSync(SESSION_FILE)) return null;
88
+ const session = JSON.parse(fs.readFileSync(SESSION_FILE, 'utf-8'));
89
+ return key ? (session.context || {})[key] : session.context;
90
+ } catch { return null; }
91
+ }
92
+
93
+ function sessionSet(key, value) {
94
+ try {
95
+ if (!fs.existsSync(SESSION_DIR)) fs.mkdirSync(SESSION_DIR, { recursive: true });
96
+ let session = {};
97
+ if (fs.existsSync(SESSION_FILE)) {
98
+ session = JSON.parse(fs.readFileSync(SESSION_FILE, 'utf-8'));
99
+ }
100
+ if (!session.context) session.context = {};
101
+ session.context[key] = value;
102
+ session.updatedAt = new Date().toISOString();
103
+ fs.writeFileSync(SESSION_FILE, JSON.stringify(session, null, 2), 'utf-8');
104
+ } catch { /* best effort */ }
105
+ }
106
+
107
+ // ── PageRank ─────────────────────────────────────────────────────────────────
108
+
109
+ function computePageRank(nodes, edges, damping, maxIter) {
110
+ damping = damping || 0.85;
111
+ maxIter = maxIter || 30;
112
+
113
+ const ids = Object.keys(nodes);
114
+ const n = ids.length;
115
+ if (n === 0) return {};
116
+
117
+ // Build adjacency: outgoing edges per node
118
+ const outLinks = {};
119
+ const inLinks = {};
120
+ for (const id of ids) { outLinks[id] = []; inLinks[id] = []; }
121
+ for (const edge of edges) {
122
+ if (outLinks[edge.sourceId]) outLinks[edge.sourceId].push(edge.targetId);
123
+ if (inLinks[edge.targetId]) inLinks[edge.targetId].push(edge.sourceId);
124
+ }
125
+
126
+ // Initialize ranks
127
+ const ranks = {};
128
+ for (const id of ids) ranks[id] = 1 / n;
129
+
130
+ // Power iteration (with dangling node redistribution)
131
+ for (let iter = 0; iter < maxIter; iter++) {
132
+ const newRanks = {};
133
+ let diff = 0;
134
+
135
+ // Collect rank from dangling nodes (no outgoing edges)
136
+ let danglingSum = 0;
137
+ for (const id of ids) {
138
+ if (outLinks[id].length === 0) danglingSum += ranks[id];
139
+ }
140
+
141
+ for (const id of ids) {
142
+ let sum = 0;
143
+ for (const src of inLinks[id]) {
144
+ const outCount = outLinks[src].length;
145
+ if (outCount > 0) sum += ranks[src] / outCount;
146
+ }
147
+ // Dangling rank distributed evenly + teleport
148
+ newRanks[id] = (1 - damping) / n + damping * (sum + danglingSum / n);
149
+ diff += Math.abs(newRanks[id] - ranks[id]);
150
+ }
151
+
152
+ for (const id of ids) ranks[id] = newRanks[id];
153
+ if (diff < 1e-6) break; // converged
154
+ }
155
+
156
+ return ranks;
157
+ }
158
+
159
+ // ── Edge building ────────────────────────────────────────────────────────────
160
+
161
+ function buildEdges(entries) {
162
+ const edges = [];
163
+ const byCategory = {};
164
+
165
+ for (const entry of entries) {
166
+ const cat = entry.category || entry.namespace || 'default';
167
+ if (!byCategory[cat]) byCategory[cat] = [];
168
+ byCategory[cat].push(entry);
169
+ }
170
+
171
+ // Temporal edges: entries from same sourceFile
172
+ const byFile = {};
173
+ for (const entry of entries) {
174
+ const file = (entry.metadata && entry.metadata.sourceFile) || null;
175
+ if (file) {
176
+ if (!byFile[file]) byFile[file] = [];
177
+ byFile[file].push(entry);
178
+ }
179
+ }
180
+ for (const file of Object.keys(byFile)) {
181
+ const group = byFile[file];
182
+ for (let i = 0; i < group.length - 1; i++) {
183
+ edges.push({
184
+ sourceId: group[i].id,
185
+ targetId: group[i + 1].id,
186
+ type: 'temporal',
187
+ weight: 0.5,
188
+ });
189
+ }
190
+ }
191
+
192
+ // Similarity edges within categories (Jaccard > 0.3)
193
+ for (const cat of Object.keys(byCategory)) {
194
+ const group = byCategory[cat];
195
+ for (let i = 0; i < group.length; i++) {
196
+ const triA = trigrams(tokenize(group[i].content || group[i].summary || ''));
197
+ for (let j = i + 1; j < group.length; j++) {
198
+ const triB = trigrams(tokenize(group[j].content || group[j].summary || ''));
199
+ const sim = jaccardSimilarity(triA, triB);
200
+ if (sim > 0.3) {
201
+ edges.push({
202
+ sourceId: group[i].id,
203
+ targetId: group[j].id,
204
+ type: 'similar',
205
+ weight: sim,
206
+ });
207
+ }
208
+ }
209
+ }
210
+ }
211
+
212
+ return edges;
213
+ }
214
+
215
+ // ── Bootstrap from MEMORY.md files ───────────────────────────────────────────
216
+
217
+ /**
218
+ * If auto-memory-store.json is empty, bootstrap by parsing MEMORY.md and
219
+ * topic files from the auto-memory directory. This removes the dependency
220
+ * on @claude-flow/memory for the initial seed.
221
+ */
222
+ function bootstrapFromMemoryFiles() {
223
+ const entries = [];
224
+ const cwd = process.cwd();
225
+
226
+ // Search for auto-memory directories
227
+ const candidates = [
228
+ // Claude Code auto-memory (project-scoped)
229
+ path.join(require('os').homedir(), '.claude', 'projects'),
230
+ // Local project memory
231
+ path.join(cwd, '.claude-flow', 'memory'),
232
+ path.join(cwd, '.claude', 'memory'),
233
+ ];
234
+
235
+ // Find MEMORY.md in project-scoped dirs
236
+ for (const base of candidates) {
237
+ if (!fs.existsSync(base)) continue;
238
+
239
+ // For the projects dir, scan subdirectories for memory/
240
+ if (base.endsWith('projects')) {
241
+ try {
242
+ const projectDirs = fs.readdirSync(base);
243
+ for (const pdir of projectDirs) {
244
+ const memDir = path.join(base, pdir, 'memory');
245
+ if (fs.existsSync(memDir)) {
246
+ parseMemoryDir(memDir, entries);
247
+ }
248
+ }
249
+ } catch { /* skip */ }
250
+ } else if (fs.existsSync(base)) {
251
+ parseMemoryDir(base, entries);
252
+ }
253
+ }
254
+
255
+ return entries;
256
+ }
257
+
258
+ function parseMemoryDir(dir, entries) {
259
+ try {
260
+ const files = fs.readdirSync(dir).filter(f => f.endsWith('.md'));
261
+ for (const file of files) {
262
+ const filePath = path.join(dir, file);
263
+ const content = fs.readFileSync(filePath, 'utf-8');
264
+ if (!content.trim()) continue;
265
+
266
+ // Parse markdown sections as separate entries
267
+ const sections = content.split(/^##?\s+/m).filter(Boolean);
268
+ for (const section of sections) {
269
+ const lines = section.trim().split('\n');
270
+ const title = lines[0].trim();
271
+ const body = lines.slice(1).join('\n').trim();
272
+ if (!body || body.length < 10) continue;
273
+
274
+ const id = `mem-${file.replace('.md', '')}-${title.replace(/[^a-z0-9]/gi, '-').toLowerCase().slice(0, 30)}`;
275
+ entries.push({
276
+ id,
277
+ key: title.toLowerCase().replace(/[^a-z0-9]+/g, '-').slice(0, 50),
278
+ content: body.slice(0, 500),
279
+ summary: title,
280
+ namespace: file === 'MEMORY.md' ? 'core' : file.replace('.md', ''),
281
+ type: 'semantic',
282
+ metadata: { sourceFile: filePath, bootstrapped: true },
283
+ createdAt: Date.now(),
284
+ });
285
+ }
286
+ }
287
+ } catch { /* skip unreadable dirs */ }
288
+ }
289
+
290
+ // ── Exported functions ───────────────────────────────────────────────────────
291
+
292
+ /**
293
+ * init() — Called from session-restore. Budget: <200ms.
294
+ * Reads auto-memory-store.json, builds graph, computes PageRank, writes caches.
295
+ * If store is empty, bootstraps from MEMORY.md files directly.
296
+ */
297
+ function init() {
298
+ ensureDataDir();
299
+
300
+ // Check if graph-state.json is fresh (within 60s of store)
301
+ const graphState = readJSON(GRAPH_PATH);
302
+ let store = readJSON(STORE_PATH);
303
+
304
+ // Bootstrap from MEMORY.md files if store is empty
305
+ if (!store || !Array.isArray(store) || store.length === 0) {
306
+ const bootstrapped = bootstrapFromMemoryFiles();
307
+ if (bootstrapped.length > 0) {
308
+ store = bootstrapped;
309
+ writeJSON(STORE_PATH, store);
310
+ } else {
311
+ return { nodes: 0, edges: 0, message: 'No memory entries to index' };
312
+ }
313
+ }
314
+
315
+ // Skip rebuild if graph is fresh and store hasn't changed
316
+ if (graphState && graphState.nodeCount === store.length) {
317
+ const age = Date.now() - (graphState.updatedAt || 0);
318
+ if (age < 60000) {
319
+ return {
320
+ nodes: graphState.nodeCount || Object.keys(graphState.nodes || {}).length,
321
+ edges: (graphState.edges || []).length,
322
+ message: 'Graph cache hit',
323
+ };
324
+ }
325
+ }
326
+
327
+ // Build nodes
328
+ const nodes = {};
329
+ for (const entry of store) {
330
+ const id = entry.id || entry.key || `entry-${Math.random().toString(36).slice(2, 8)}`;
331
+ nodes[id] = {
332
+ id,
333
+ category: entry.namespace || entry.type || 'default',
334
+ confidence: (entry.metadata && entry.metadata.confidence) || 0.5,
335
+ accessCount: (entry.metadata && entry.metadata.accessCount) || 0,
336
+ createdAt: entry.createdAt || Date.now(),
337
+ };
338
+ // Ensure entry has id for edge building
339
+ entry.id = id;
340
+ }
341
+
342
+ // Build edges
343
+ const edges = buildEdges(store);
344
+
345
+ // Compute PageRank
346
+ const pageRanks = computePageRank(nodes, edges, 0.85, 30);
347
+
348
+ // Write graph state
349
+ const graph = {
350
+ version: 1,
351
+ updatedAt: Date.now(),
352
+ nodeCount: Object.keys(nodes).length,
353
+ nodes,
354
+ edges,
355
+ pageRanks,
356
+ };
357
+ writeJSON(GRAPH_PATH, graph);
358
+
359
+ // Build ranked context for fast lookup
360
+ const rankedEntries = store.map(entry => {
361
+ const id = entry.id;
362
+ const content = entry.content || entry.value || '';
363
+ const summary = entry.summary || entry.key || '';
364
+ const words = tokenize(content + ' ' + summary);
365
+ return {
366
+ id,
367
+ content,
368
+ summary,
369
+ category: entry.namespace || entry.type || 'default',
370
+ confidence: nodes[id] ? nodes[id].confidence : 0.5,
371
+ pageRank: pageRanks[id] || 0,
372
+ accessCount: nodes[id] ? nodes[id].accessCount : 0,
373
+ words,
374
+ };
375
+ }).sort((a, b) => {
376
+ const scoreA = 0.6 * a.pageRank + 0.4 * a.confidence;
377
+ const scoreB = 0.6 * b.pageRank + 0.4 * b.confidence;
378
+ return scoreB - scoreA;
379
+ });
380
+
381
+ const ranked = {
382
+ version: 1,
383
+ computedAt: Date.now(),
384
+ entries: rankedEntries,
385
+ };
386
+ writeJSON(RANKED_PATH, ranked);
387
+
388
+ return {
389
+ nodes: Object.keys(nodes).length,
390
+ edges: edges.length,
391
+ message: 'Graph built and ranked',
392
+ };
393
+ }
394
+
395
+ /**
396
+ * getContext(prompt) — Called from route. Budget: <15ms.
397
+ * Matches prompt to ranked entries, returns top-5 formatted context.
398
+ */
399
+ function getContext(prompt) {
400
+ if (!prompt) return null;
401
+
402
+ const ranked = readJSON(RANKED_PATH);
403
+ if (!ranked || !ranked.entries || ranked.entries.length === 0) return null;
404
+
405
+ const promptWords = tokenize(prompt);
406
+ if (promptWords.length === 0) return null;
407
+ const promptTrigrams = trigrams(promptWords);
408
+
409
+ const ALPHA = 0.6; // content match weight
410
+ const MIN_THRESHOLD = 0.05;
411
+ const TOP_K = 5;
412
+
413
+ // Score each entry
414
+ const scored = [];
415
+ for (const entry of ranked.entries) {
416
+ const entryTrigrams = trigrams(entry.words || []);
417
+ const contentMatch = jaccardSimilarity(promptTrigrams, entryTrigrams);
418
+ const score = ALPHA * contentMatch + (1 - ALPHA) * (entry.pageRank || 0);
419
+ if (score >= MIN_THRESHOLD) {
420
+ scored.push({ ...entry, score });
421
+ }
422
+ }
423
+
424
+ if (scored.length === 0) return null;
425
+
426
+ // Sort by score descending, take top-K
427
+ scored.sort((a, b) => b.score - a.score);
428
+ const topEntries = scored.slice(0, TOP_K);
429
+
430
+ // Boost previously matched patterns (implicit success: user continued working)
431
+ const prevMatched = sessionGet('lastMatchedPatterns');
432
+
433
+ // Store NEW matched IDs in session state for feedback
434
+ const matchedIds = topEntries.map(e => e.id);
435
+ sessionSet('lastMatchedPatterns', matchedIds);
436
+
437
+ // Only boost previous if they differ from current (avoid double-boosting)
438
+ if (prevMatched && Array.isArray(prevMatched)) {
439
+ const newSet = new Set(matchedIds);
440
+ const toBoost = prevMatched.filter(id => !newSet.has(id));
441
+ if (toBoost.length > 0) boostConfidence(toBoost, 0.03);
442
+ }
443
+
444
+ // Format output
445
+ const lines = ['[INTELLIGENCE] Relevant patterns for this task:'];
446
+ for (let i = 0; i < topEntries.length; i++) {
447
+ const e = topEntries[i];
448
+ const display = (e.summary || e.content || '').slice(0, 80);
449
+ const accessed = e.accessCount || 0;
450
+ lines.push(` * (${e.score.toFixed(2)}) ${display} [rank #${i + 1}, ${accessed}x accessed]`);
451
+ }
452
+
453
+ return lines.join('\n');
454
+ }
455
+
456
+ /**
457
+ * recordEdit(file) — Called from post-edit. Budget: <2ms.
458
+ * Appends to pending-insights.jsonl.
459
+ */
460
+ function recordEdit(file) {
461
+ ensureDataDir();
462
+ const entry = JSON.stringify({
463
+ type: 'edit',
464
+ file: file || 'unknown',
465
+ timestamp: Date.now(),
466
+ sessionId: sessionGet('sessionId') || null,
467
+ });
468
+ fs.appendFileSync(PENDING_PATH, entry + '\n', 'utf-8');
469
+ }
470
+
471
+ /**
472
+ * feedback(success) — Called from post-task. Budget: <10ms.
473
+ * Boosts or decays confidence for last-matched patterns.
474
+ */
475
+ function feedback(success) {
476
+ const matchedIds = sessionGet('lastMatchedPatterns');
477
+ if (!matchedIds || !Array.isArray(matchedIds)) return;
478
+
479
+ const amount = success ? 0.05 : -0.02;
480
+ boostConfidence(matchedIds, amount);
481
+ }
482
+
483
+ function boostConfidence(ids, amount) {
484
+ const ranked = readJSON(RANKED_PATH);
485
+ if (!ranked || !ranked.entries) return;
486
+
487
+ let changed = false;
488
+ for (const entry of ranked.entries) {
489
+ if (ids.includes(entry.id)) {
490
+ entry.confidence = Math.max(0, Math.min(1, (entry.confidence || 0.5) + amount));
491
+ entry.accessCount = (entry.accessCount || 0) + 1;
492
+ changed = true;
493
+ }
494
+ }
495
+
496
+ if (changed) writeJSON(RANKED_PATH, ranked);
497
+
498
+ // Also update graph-state confidence
499
+ const graph = readJSON(GRAPH_PATH);
500
+ if (graph && graph.nodes) {
501
+ for (const id of ids) {
502
+ if (graph.nodes[id]) {
503
+ graph.nodes[id].confidence = Math.max(0, Math.min(1, (graph.nodes[id].confidence || 0.5) + amount));
504
+ graph.nodes[id].accessCount = (graph.nodes[id].accessCount || 0) + 1;
505
+ }
506
+ }
507
+ writeJSON(GRAPH_PATH, graph);
508
+ }
509
+ }
510
+
511
+ /**
512
+ * consolidate() — Called from session-end. Budget: <500ms.
513
+ * Processes pending insights, rebuilds edges, recomputes PageRank.
514
+ */
515
+ function consolidate() {
516
+ ensureDataDir();
517
+
518
+ const store = readJSON(STORE_PATH);
519
+ if (!store || !Array.isArray(store)) {
520
+ return { entries: 0, edges: 0, newEntries: 0, message: 'No store to consolidate' };
521
+ }
522
+
523
+ // 1. Process pending insights
524
+ let newEntries = 0;
525
+ if (fs.existsSync(PENDING_PATH)) {
526
+ const lines = fs.readFileSync(PENDING_PATH, 'utf-8').trim().split('\n').filter(Boolean);
527
+ const editCounts = {};
528
+ for (const line of lines) {
529
+ try {
530
+ const insight = JSON.parse(line);
531
+ if (insight.file) {
532
+ editCounts[insight.file] = (editCounts[insight.file] || 0) + 1;
533
+ }
534
+ } catch { /* skip malformed */ }
535
+ }
536
+
537
+ // Create entries for frequently-edited files (3+ edits)
538
+ for (const [file, count] of Object.entries(editCounts)) {
539
+ if (count >= 3) {
540
+ const exists = store.some(e =>
541
+ (e.metadata && e.metadata.sourceFile === file && e.metadata.autoGenerated)
542
+ );
543
+ if (!exists) {
544
+ store.push({
545
+ id: `insight-${Date.now()}-${Math.random().toString(36).slice(2, 6)}`,
546
+ key: `frequent-edit-${path.basename(file)}`,
547
+ content: `File ${file} was edited ${count} times this session — likely a hot path worth monitoring.`,
548
+ summary: `Frequently edited: ${path.basename(file)} (${count}x)`,
549
+ namespace: 'insights',
550
+ type: 'procedural',
551
+ metadata: { sourceFile: file, editCount: count, autoGenerated: true },
552
+ createdAt: Date.now(),
553
+ });
554
+ newEntries++;
555
+ }
556
+ }
557
+ }
558
+
559
+ // Clear pending
560
+ fs.writeFileSync(PENDING_PATH, '', 'utf-8');
561
+ }
562
+
563
+ // 2. Confidence decay for unaccessed entries
564
+ const graph = readJSON(GRAPH_PATH);
565
+ if (graph && graph.nodes) {
566
+ const now = Date.now();
567
+ for (const id of Object.keys(graph.nodes)) {
568
+ const node = graph.nodes[id];
569
+ const hoursSinceCreation = (now - (node.createdAt || now)) / (1000 * 60 * 60);
570
+ if (node.accessCount === 0 && hoursSinceCreation > 24) {
571
+ node.confidence = Math.max(0.05, (node.confidence || 0.5) - 0.005 * Math.floor(hoursSinceCreation / 24));
572
+ }
573
+ }
574
+ }
575
+
576
+ // 3. Rebuild edges with updated store
577
+ for (const entry of store) {
578
+ if (!entry.id) entry.id = `entry-${Math.random().toString(36).slice(2, 8)}`;
579
+ }
580
+ const edges = buildEdges(store);
581
+
582
+ // 4. Build updated nodes
583
+ const nodes = {};
584
+ for (const entry of store) {
585
+ nodes[entry.id] = {
586
+ id: entry.id,
587
+ category: entry.namespace || entry.type || 'default',
588
+ confidence: (graph && graph.nodes && graph.nodes[entry.id])
589
+ ? graph.nodes[entry.id].confidence
590
+ : (entry.metadata && entry.metadata.confidence) || 0.5,
591
+ accessCount: (graph && graph.nodes && graph.nodes[entry.id])
592
+ ? graph.nodes[entry.id].accessCount
593
+ : (entry.metadata && entry.metadata.accessCount) || 0,
594
+ createdAt: entry.createdAt || Date.now(),
595
+ };
596
+ }
597
+
598
+ // 5. Recompute PageRank
599
+ const pageRanks = computePageRank(nodes, edges, 0.85, 30);
600
+
601
+ // 6. Write updated graph
602
+ writeJSON(GRAPH_PATH, {
603
+ version: 1,
604
+ updatedAt: Date.now(),
605
+ nodeCount: Object.keys(nodes).length,
606
+ nodes,
607
+ edges,
608
+ pageRanks,
609
+ });
610
+
611
+ // 7. Write updated ranked context
612
+ const rankedEntries = store.map(entry => {
613
+ const id = entry.id;
614
+ const content = entry.content || entry.value || '';
615
+ const summary = entry.summary || entry.key || '';
616
+ const words = tokenize(content + ' ' + summary);
617
+ return {
618
+ id,
619
+ content,
620
+ summary,
621
+ category: entry.namespace || entry.type || 'default',
622
+ confidence: nodes[id] ? nodes[id].confidence : 0.5,
623
+ pageRank: pageRanks[id] || 0,
624
+ accessCount: nodes[id] ? nodes[id].accessCount : 0,
625
+ words,
626
+ };
627
+ }).sort((a, b) => {
628
+ const scoreA = 0.6 * a.pageRank + 0.4 * a.confidence;
629
+ const scoreB = 0.6 * b.pageRank + 0.4 * b.confidence;
630
+ return scoreB - scoreA;
631
+ });
632
+
633
+ writeJSON(RANKED_PATH, {
634
+ version: 1,
635
+ computedAt: Date.now(),
636
+ entries: rankedEntries,
637
+ });
638
+
639
+ // 8. Persist updated store (with new insight entries)
640
+ if (newEntries > 0) writeJSON(STORE_PATH, store);
641
+
642
+ return {
643
+ entries: store.length,
644
+ edges: edges.length,
645
+ newEntries,
646
+ message: 'Consolidated',
647
+ };
648
+ }
649
+
650
+ module.exports = { init, getContext, recordEdit, feedback, consolidate };
@@ -100,6 +100,14 @@ const commands = {
100
100
  return session;
101
101
  },
102
102
 
103
+ get: (key) => {
104
+ if (!fs.existsSync(SESSION_FILE)) return null;
105
+ try {
106
+ const session = JSON.parse(fs.readFileSync(SESSION_FILE, 'utf-8'));
107
+ return key ? (session.context || {})[key] : session.context;
108
+ } catch { return null; }
109
+ },
110
+
103
111
  metric: (name) => {
104
112
  if (!fs.existsSync(SESSION_FILE)) {
105
113
  return null;
@@ -371,7 +371,7 @@ export async function executeUpgrade(targetDir, upgradeSettings = false) {
371
371
  // 0. ALWAYS update critical helpers (force overwrite)
372
372
  const sourceHelpersForUpgrade = findSourceHelpersDir();
373
373
  if (sourceHelpersForUpgrade) {
374
- const criticalHelpers = ['auto-memory-hook.mjs', 'hook-handler.cjs'];
374
+ const criticalHelpers = ['auto-memory-hook.mjs', 'hook-handler.cjs', 'intelligence.cjs'];
375
375
  for (const helperName of criticalHelpers) {
376
376
  const targetPath = path.join(targetDir, '.claude', 'helpers', helperName);
377
377
  const sourcePath = path.join(sourceHelpersForUpgrade, helperName);