@mneme-ai/core 2.19.89 โ†’ 2.19.90-lite

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.
@@ -1 +1 @@
1
- {"version":3,"file":"userscript_generator.d.ts","sourceRoot":"","sources":["../../src/permeate/userscript_generator.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AAEH,MAAM,WAAW,iBAAiB;IAChC,oDAAoD;IACpD,YAAY,EAAE,MAAM,CAAC;IACrB;;qEAEiE;IACjE,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qEAAqE;IACrE,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;6EAIyE;IACzE,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED,MAAM,WAAW,kBAAkB;IACjC;2BACuB;IACvB,OAAO,EAAE,MAAM,CAAC;IAChB,2BAA2B;IAC3B,QAAQ,EAAE,MAAM,CAAC;IACjB,6DAA6D;IAC7D,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,iBAAiB,GAAG,kBAAkB,CA8mB9E"}
1
+ {"version":3,"file":"userscript_generator.d.ts","sourceRoot":"","sources":["../../src/permeate/userscript_generator.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AAEH,MAAM,WAAW,iBAAiB;IAChC,oDAAoD;IACpD,YAAY,EAAE,MAAM,CAAC;IACrB;;qEAEiE;IACjE,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qEAAqE;IACrE,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;6EAIyE;IACzE,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED,MAAM,WAAW,kBAAkB;IACjC;2BACuB;IACvB,OAAO,EAAE,MAAM,CAAC;IAChB,2BAA2B;IAC3B,QAAQ,EAAE,MAAM,CAAC;IACjB,6DAA6D;IAC7D,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,iBAAiB,GAAG,kBAAkB,CAwsB9E"}
@@ -114,6 +114,52 @@ async function fetchSoulFromBridge() {
114
114
  }
115
115
  }
116
116
 
117
+ // v2.19.90 โ€” friendly help modal when the clipboard doesn't have a
118
+ // soul prompt (the old alert just said "wrong format" and confused users).
119
+ function showSoulHelpModal() {
120
+ if (document.getElementById('mneme-soul-help')) return;
121
+ const overlay = document.createElement('div');
122
+ overlay.id = 'mneme-soul-help';
123
+ overlay.style.cssText = 'position:fixed;inset:0;z-index:100000;background:rgba(0,0,0,0.72);display:flex;align-items:center;justify-content:center;padding:20px;font-family:ui-sans-serif,system-ui,-apple-system,sans-serif;';
124
+ const card = document.createElement('div');
125
+ card.style.cssText = 'max-width:520px;width:100%;background:#0a0a0e;border:1px solid #7c3aed;border-radius:14px;padding:24px;color:#e6e6e6;box-shadow:0 20px 60px rgba(0,0,0,0.6);';
126
+ card.innerHTML = \`
127
+ <div style="display:flex;justify-content:space-between;align-items:center;margin-bottom:14px">
128
+ <strong style="color:#c4b5fd;font-size:15px">๐Ÿ’‰ Mneme Soul Injector โ€” what is this?</strong>
129
+ <span id="mneme-soul-help-close" style="cursor:pointer;color:#9ba1a6;font-size:16px">โœ•</span>
130
+ </div>
131
+ <p style="margin:0 0 12px 0;font-size:13px;color:#cbd5e1;line-height:1.55">
132
+ A <strong style="color:#c4b5fd">"Soul Prompt"</strong> is a compressed brain-transfer: it gives a fresh AI chat your Mneme context โ€” recent decisions, indexed memory, reasoning history โ€” in a single paste.
133
+ </p>
134
+ <p style="margin:0 0 12px 0;font-size:13px;color:#cbd5e1;line-height:1.55">
135
+ This button auto-pastes that text into the chat input. <strong>Different feature from the green/yellow/red polygraph dots</strong> โ€” those work automatically without this button.
136
+ </p>
137
+ <div style="background:rgba(0,0,0,0.4);border:1px solid rgba(124,58,237,0.3);border-radius:8px;padding:14px;margin-bottom:14px">
138
+ <div style="color:#c4b5fd;font-size:12px;text-transform:uppercase;letter-spacing:0.08em;margin-bottom:8px">How to use</div>
139
+ <ol style="margin:0;padding-left:22px;font-size:12px;line-height:1.7;color:#e6e6e6">
140
+ <li>In your terminal:
141
+ <code style="background:rgba(124,58,237,0.18);padding:1px 6px;border-radius:4px;color:#ddd6fe;font-family:ui-monospace,Menlo,monospace">mneme.genesplice.soul-prompt</code> (via MCP) or
142
+ <code style="background:rgba(124,58,237,0.18);padding:1px 6px;border-radius:4px;color:#ddd6fe;font-family:ui-monospace,Menlo,monospace">mneme talk</code>
143
+ </li>
144
+ <li>Copy the full output (starts with <code style="font-family:ui-monospace,Menlo,monospace">๐Ÿงฌ MNEME SOUL PROMPT</code>) to your clipboard.</li>
145
+ <li>Click this button โ€” the soul is pasted into the chat. Press Send.</li>
146
+ </ol>
147
+ </div>
148
+ <div style="font-size:11px;color:#fbbf24;background:rgba(251,191,36,0.06);border:1px solid rgba(251,191,36,0.20);padding:10px 12px;border-radius:6px;line-height:1.5">
149
+ ๐Ÿ’ก <strong>Why use this?</strong> You started a fresh chat and want the AI to know everything Mneme has learned about your repo โ€” without re-explaining.
150
+ </div>
151
+ <div style="text-align:right;margin-top:14px">
152
+ <button id="mneme-soul-help-ok" style="background:linear-gradient(135deg,#7c3aed,#ec4899);color:#fff;border:0;border-radius:8px;padding:9px 18px;font-weight:600;cursor:pointer;font-family:inherit">Got it</button>
153
+ </div>
154
+ \`;
155
+ overlay.appendChild(card);
156
+ document.body.appendChild(overlay);
157
+ function close() { overlay.remove(); }
158
+ overlay.addEventListener('click', (e) => { if (e.target === overlay) close(); });
159
+ document.getElementById('mneme-soul-help-close')?.addEventListener('click', close);
160
+ document.getElementById('mneme-soul-help-ok')?.addEventListener('click', close);
161
+ }
162
+
117
163
  function makeButton() {
118
164
  const btn = document.createElement('button');
119
165
  btn.textContent = '๐Ÿ’‰ Inject Mneme Soul';
@@ -126,18 +172,19 @@ async function fetchSoulFromBridge() {
126
172
  box-shadow: 0 4px 14px rgba(124,58,237,0.4);
127
173
  font-size: 13px;
128
174
  \`;
129
- btn.title = 'Paste a Mneme soul prompt to inject into the chat input';
175
+ btn.title = 'Inject a Mneme Soul Prompt into the chat input (click for help)';
130
176
  btn.onclick = async () => {
131
177
  let soul;
132
178
  try { soul = await navigator.clipboard.readText(); }
133
- catch { soul = prompt('Paste your Mneme soul prompt:'); }
179
+ catch { soul = null; }
134
180
  if (!soul || !soul.includes('MNEME SOUL PROMPT')) {
135
- alert('That does not look like a Mneme soul prompt. Copy the full text starting with "# ๐Ÿงฌ MNEME SOUL PROMPT".');
181
+ // v2.19.90 โ€” friendly help modal instead of cryptic alert
182
+ showSoulHelpModal();
136
183
  return;
137
184
  }
138
185
  const el = findInput();
139
186
  if (!el) {
140
- alert('Could not find the chat input on this page. The site UI may have changed.');
187
+ alert('Could not find the chat input on this page. The site UI may have changed โ€” try refreshing.');
141
188
  return;
142
189
  }
143
190
  injectText(el, soul);
@@ -406,21 +453,64 @@ async function fetchSoulFromBridge() {
406
453
  if (existing) { existing.remove(); return; }
407
454
  const panel = document.createElement('div');
408
455
  panel.id = 'mneme-polygraph-panel';
409
- panel.style.cssText = 'position:fixed;bottom:80px;right:14px;z-index:99999;width:380px;max-height:60vh;overflow:auto;background:#0a0a0e;border:1px solid #f38020;border-radius:10px;padding:14px;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;color:#e6e6e6;font-size:11px;line-height:1.5;box-shadow:0 10px 40px rgba(0,0,0,0.6);';
410
- let html = '<div style="display:flex;justify-content:space-between;margin-bottom:10px"><strong style="color:#f7d34c">๐Ÿ”ด MNEME POLYGRAPH โ€” session readout</strong><span style="cursor:pointer;color:#9ba1a6" id="mneme-polygraph-close">โœ•</span></div>';
456
+ panel.style.cssText = 'position:fixed;bottom:80px;right:14px;z-index:99999;width:420px;max-height:75vh;overflow:auto;background:#0a0a0e;border:1px solid #f38020;border-radius:10px;padding:16px;font-family:ui-sans-serif,system-ui,-apple-system,sans-serif;color:#e6e6e6;font-size:12px;line-height:1.55;box-shadow:0 10px 40px rgba(0,0,0,0.6);';
457
+ // v2.19.90 โ€” clearer header + plain-language legend so users
458
+ // understand what the panel is telling them. The verdict list at
459
+ // the bottom is now labelled correctly.
460
+ let html = '';
461
+ html += '<div style="display:flex;justify-content:space-between;align-items:center;margin-bottom:10px">';
462
+ html += ' <strong style="color:#f7d34c;font-size:13px">๐Ÿ”ด Mneme Polygraph</strong>';
463
+ html += ' <span style="cursor:pointer;color:#9ba1a6;font-size:14px" id="mneme-polygraph-close">โœ•</span>';
464
+ html += '</div>';
465
+ html += '<div style="color:#9ba1a6;font-size:11px;margin-bottom:12px;line-height:1.5">This panel grades every sentence the AI wrote against your local Mneme memory. Each grade is a coloured dot. Here\\'s what the colours mean:</div>';
466
+ // Legend
467
+ html += '<div style="display:grid;grid-template-columns:14px 1fr;gap:6px 10px;font-size:11px;margin-bottom:14px;padding:10px 12px;border-radius:8px;background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.06)">';
468
+ html += ' <span style="color:#3fb950;font-size:14px;line-height:1">โ—</span><span><strong style="color:#3fb950">GREEN</strong> &nbsp; <span style="color:#cbd5e1">the AI\\'s claim matches Mneme\\'s evidence โ€” safe.</span></span>';
469
+ html += ' <span style="color:#f7d34c;font-size:14px;line-height:1">โ—</span><span><strong style="color:#f7d34c">YELLOW</strong> &nbsp; <span style="color:#cbd5e1">no clear evidence either way โ€” needs more specifics (most casual sentences land here).</span></span>';
470
+ html += ' <span style="color:#ff5b5b;font-size:14px;line-height:1">โ—</span><span><strong style="color:#ff5b5b">RED</strong> &nbsp; <span style="color:#cbd5e1">Mneme\\'s evidence contradicts the AI โ€” DO NOT trust this claim.</span></span>';
471
+ html += ' <span style="color:#6e7681;font-size:14px;line-height:1">โ—</span><span><strong style="color:#6e7681">GREY</strong> &nbsp; <span style="color:#cbd5e1">bridge offline, or the sentence is too short / has no facts to grade.</span></span>';
472
+ html += '</div>';
473
+ // Stats badge
474
+ if (ekgVerdicts.length > 0) {
475
+ const g = ekgVerdicts.filter(function(v){return v.color==='green';}).length;
476
+ const y = ekgVerdicts.filter(function(v){return v.color==='yellow';}).length;
477
+ const r = ekgVerdicts.filter(function(v){return v.color==='red';}).length;
478
+ const gr = ekgVerdicts.filter(function(v){return v.color==='grey';}).length;
479
+ html += '<div style="display:flex;gap:8px;justify-content:space-between;font-size:11px;padding:8px 12px;background:rgba(243,128,32,0.08);border-radius:6px;border:1px solid rgba(243,128,32,0.25);margin-bottom:12px;font-family:ui-monospace,SFMono-Regular,Menlo,monospace">';
480
+ html += ' <span><span style="color:#3fb950">โ—</span> ' + g + ' green</span>';
481
+ html += ' <span><span style="color:#f7d34c">โ—</span> ' + y + ' yellow</span>';
482
+ html += ' <span><span style="color:#ff5b5b">โ—</span> ' + r + ' red</span>';
483
+ html += ' <span><span style="color:#6e7681">โ—</span> ' + gr + ' grey</span>';
484
+ html += '</div>';
485
+ }
486
+ // Tip about when red/green appears
487
+ html += '<div style="font-size:10px;color:#fbbf24;background:rgba(251,191,36,0.06);border:1px solid rgba(251,191,36,0.20);padding:8px 10px;border-radius:6px;margin-bottom:12px;line-height:1.5">';
488
+ html += '๐Ÿ’ก <strong>When will RED/GREEN appear?</strong><br/>';
489
+ html += 'Mneme matches the AI\\'s sentence against <em>your indexed code/repo</em> + the multi-signal truth engine. Most general-knowledge sentences score YELLOW because Mneme can\\'t prove or disprove them. Ask about code, repo files, package versions, or specific facts that conflict with your repo โ€” that\\'s where RED/GREEN light up.';
490
+ html += '</div>';
491
+ // Verdict history
411
492
  if (ekgVerdicts.length === 0) {
412
- html += '<div style="color:#9ba1a6">No sentences scored yet. Ask the AI a factual question โ€” polygraph dots will appear inline.</div>';
493
+ html += '<div style="color:#9ba1a6;font-size:11px;padding:14px 12px;background:rgba(255,255,255,0.02);border-radius:6px;text-align:center">No sentences scored yet.<br/>Ask the AI a question โ€” dots appear inline next to each sentence.</div>';
413
494
  } else {
495
+ html += '<div style="color:#9ba1a6;font-size:10px;text-transform:uppercase;letter-spacing:0.1em;margin-bottom:6px">Recent verdicts (newest first)</div>';
414
496
  for (const v of ekgVerdicts.slice(-50).reverse()) {
415
497
  const dotColor = v.color === 'green' ? '#3fb950' : v.color === 'red' ? '#ff5b5b' : v.color === 'yellow' ? '#f7d34c' : '#6e7681';
416
- html += '<div style="padding:6px 0;border-bottom:1px solid #1a1a22"><span style="color:' + dotColor + ';font-size:14px">โ—</span> <span style="color:#9ba1a6">' + (v.color || 'grey').toUpperCase() + '</span> ยท ' + (v.oneLine || '') + '<br><span style="color:#666;font-size:10px">' + (v.sentence || '').slice(0, 140) + '</span></div>';
498
+ const label = v.color === 'green' ? 'verified' : v.color === 'red' ? 'refuted' : v.color === 'yellow' ? 'no evidence' : 'not graded';
499
+ html += '<div style="padding:8px 4px;border-bottom:1px solid #1a1a22;font-size:11px">';
500
+ html += ' <div style="display:flex;align-items:center;gap:6px;margin-bottom:3px">';
501
+ html += ' <span style="color:' + dotColor + ';font-size:14px">โ—</span>';
502
+ html += ' <strong style="color:' + dotColor + ';text-transform:lowercase">' + label + '</strong>';
503
+ html += ' <span style="color:#666;font-size:10px">ยท ' + (v.oneLine || '') + '</span>';
504
+ html += ' </div>';
505
+ html += ' <div style="color:#9ba1a6;font-size:10px;padding-left:20px;line-height:1.4">' + (v.sentence || '').slice(0, 160) + '</div>';
506
+ html += '</div>';
417
507
  }
418
508
  }
419
509
  panel.innerHTML = html;
420
510
  document.body.appendChild(panel);
421
511
  const closeBtn = document.getElementById('mneme-polygraph-close');
422
- if (closeBtn) closeBtn.onclick = (e) => { e.stopPropagation(); panel.remove(); };
423
- panel.addEventListener('click', (e) => e.stopPropagation());
512
+ if (closeBtn) closeBtn.onclick = function(e) { e.stopPropagation(); panel.remove(); };
513
+ panel.addEventListener('click', function(e){ e.stopPropagation(); });
424
514
  }
425
515
 
426
516
  // โ”€โ”€ DOT injection โ”€โ”€
@@ -1 +1 @@
1
- {"version":3,"file":"userscript_generator.js","sourceRoot":"","sources":["../../src/permeate/userscript_generator.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AA6BH,MAAM,UAAU,kBAAkB,CAAC,IAAuB;IACxD,MAAM,MAAM,GAAG;QACb,mBAAmB;QACnB,sCAAsC;QACtC,4DAA4D;QAC5D,oBAAoB,IAAI,CAAC,YAAY,EAAE;QACvC,8IAA8I;QAC9I,wBAAwB;QACxB,wCAAwC;QACxC,2GAA2G;QAC3G,4CAA4C;QAC5C,8CAA8C;QAC9C,gDAAgD;QAChD,sCAAsC;QACtC,kDAAkD;QAClD,8CAA8C;QAC9C,2CAA2C;QAC3C,kCAAkC;QAClC,oCAAoC;QACpC,gCAAgC;QAChC,oBAAoB;KACrB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAEb,MAAM,WAAW,GAAG,IAAI,CAAC,SAAS;QAChC,CAAC,CAAC;;qBAEe,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,SAAS,CAAC;uBAC5B,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,WAAW,IAAI,EAAE,CAAC;;;;;;;;;;;;CAY5D;QACG,CAAC,CAAC,EAAE,CAAC;IAEP,MAAM,IAAI,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqGd,CAAC,IAAI,EAAE,CAAC;IAEP,0DAA0D;IAC1D,oEAAoE;IACpE,sEAAsE;IACtE,gCAAgC;IAChC,gEAAgE;IAChE,qEAAqE;IACrE,gEAAgE;IAChE,wEAAwE;IACxE,sDAAsD;IACtD,mEAAmE;IACnE,qEAAqE;IACrE,0EAA0E;IAC1E,qDAAqD;IACrD,wEAAwE;IACxE,sEAAsE;IACtE,MAAM,cAAc,GAAG,IAAI,CAAC,SAAS,IAAI,IAAI,CAAC,SAAS;QACrD,CAAC,CAAC;;;;;;;;;;;;;;mCAc6B,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,SAAS,CAAC;mCAC9B,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,WAAW,IAAI,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAibxE;QACG,CAAC,CAAC,EAAE,CAAC;IAEP,MAAM,OAAO,GAAG,GAAG,MAAM,OAAO,WAAW,GAAG,IAAI,KAAK,cAAc,EAAE,CAAC;IACxE,OAAO;QACL,OAAO;QACP,QAAQ,EAAE,IAAI,CAAC,SAAS;YACtB,CAAC,CAAC,mBAAmB,IAAI,CAAC,YAAY,UAAU;YAChD,CAAC,CAAC,uBAAuB,IAAI,CAAC,YAAY,UAAU;QACtD,WAAW,EAAE,IAAI,CAAC,SAAS;YACzB,CAAC,CAAC,qYAAqY;YACvY,CAAC,CAAC,sSAAsS;KAC3S,CAAC;AACJ,CAAC"}
1
+ {"version":3,"file":"userscript_generator.js","sourceRoot":"","sources":["../../src/permeate/userscript_generator.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AA6BH,MAAM,UAAU,kBAAkB,CAAC,IAAuB;IACxD,MAAM,MAAM,GAAG;QACb,mBAAmB;QACnB,sCAAsC;QACtC,4DAA4D;QAC5D,oBAAoB,IAAI,CAAC,YAAY,EAAE;QACvC,8IAA8I;QAC9I,wBAAwB;QACxB,wCAAwC;QACxC,2GAA2G;QAC3G,4CAA4C;QAC5C,8CAA8C;QAC9C,gDAAgD;QAChD,sCAAsC;QACtC,kDAAkD;QAClD,8CAA8C;QAC9C,2CAA2C;QAC3C,kCAAkC;QAClC,oCAAoC;QACpC,gCAAgC;QAChC,oBAAoB;KACrB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAEb,MAAM,WAAW,GAAG,IAAI,CAAC,SAAS;QAChC,CAAC,CAAC;;qBAEe,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,SAAS,CAAC;uBAC5B,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,WAAW,IAAI,EAAE,CAAC;;;;;;;;;;;;CAY5D;QACG,CAAC,CAAC,EAAE,CAAC;IAEP,MAAM,IAAI,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoJd,CAAC,IAAI,EAAE,CAAC;IAEP,0DAA0D;IAC1D,oEAAoE;IACpE,sEAAsE;IACtE,gCAAgC;IAChC,gEAAgE;IAChE,qEAAqE;IACrE,gEAAgE;IAChE,wEAAwE;IACxE,sDAAsD;IACtD,mEAAmE;IACnE,qEAAqE;IACrE,0EAA0E;IAC1E,qDAAqD;IACrD,wEAAwE;IACxE,sEAAsE;IACtE,MAAM,cAAc,GAAG,IAAI,CAAC,SAAS,IAAI,IAAI,CAAC,SAAS;QACrD,CAAC,CAAC;;;;;;;;;;;;;;mCAc6B,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,SAAS,CAAC;mCAC9B,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,WAAW,IAAI,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4dxE;QACG,CAAC,CAAC,EAAE,CAAC;IAEP,MAAM,OAAO,GAAG,GAAG,MAAM,OAAO,WAAW,GAAG,IAAI,KAAK,cAAc,EAAE,CAAC;IACxE,OAAO;QACL,OAAO;QACP,QAAQ,EAAE,IAAI,CAAC,SAAS;YACtB,CAAC,CAAC,mBAAmB,IAAI,CAAC,YAAY,UAAU;YAChD,CAAC,CAAC,uBAAuB,IAAI,CAAC,YAAY,UAAU;QACtD,WAAW,EAAE,IAAI,CAAC,SAAS;YACzB,CAAC,CAAC,qYAAqY;YACvY,CAAC,CAAC,sSAAsS;KAC3S,CAAC;AACJ,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mneme-ai/core",
3
- "version": "2.19.89",
4
- "description": "Core indexing, retrieval, and graph engine for Mneme",
3
+ "version": "2.19.90-lite",
4
+ "description": "Core indexing, retrieval, and graph engine for Mneme โ€” LITE variant (no bundled WASM embedder, no native deps).",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -69,8 +69,5 @@
69
69
  },
70
70
  "engines": {
71
71
  "node": ">=22.13.0 <25.0.0"
72
- },
73
- "optionalDependencies": {
74
- "z3-solver": "^4.16.0"
75
72
  }
76
73
  }