mneme-ai 3.115.0 → 3.117.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/dist/commands/hpe.d.ts +10 -0
- package/dist/commands/hpe.d.ts.map +1 -0
- package/dist/commands/hpe.js +65 -0
- package/dist/commands/hpe.js.map +1 -0
- package/dist/commands/statguard.d.ts +11 -0
- package/dist/commands/statguard.d.ts.map +1 -0
- package/dist/commands/statguard.js +69 -0
- package/dist/commands/statguard.js.map +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `mneme protect` (v3.117.0) — the Hallucination Protection Engine. Run an AI
|
|
3
|
+
* claim/output through the nerve mesh → TRUSTED / REVIEW / BLOCK + the fired nerves.
|
|
4
|
+
*
|
|
5
|
+
* mneme protect "p > 0.05 so the drug has no effect"
|
|
6
|
+
* mneme protect bench
|
|
7
|
+
*/
|
|
8
|
+
import type { Command } from "commander";
|
|
9
|
+
export declare function registerHpeCommands(program: Command): void;
|
|
10
|
+
//# sourceMappingURL=hpe.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hpe.d.ts","sourceRoot":"","sources":["../../src/commands/hpe.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAKzC,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CAkC1D"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `mneme protect` (v3.117.0) — the Hallucination Protection Engine. Run an AI
|
|
3
|
+
* claim/output through the nerve mesh → TRUSTED / REVIEW / BLOCK + the fired nerves.
|
|
4
|
+
*
|
|
5
|
+
* mneme protect "p > 0.05 so the drug has no effect"
|
|
6
|
+
* mneme protect bench
|
|
7
|
+
*/
|
|
8
|
+
import { hpe, notary } from "@mneme-ai/core";
|
|
9
|
+
function out(s) { process.stdout.write(s + "\n"); }
|
|
10
|
+
export function registerHpeCommands(program) {
|
|
11
|
+
const g = program
|
|
12
|
+
.command("protect")
|
|
13
|
+
.alias("hpe")
|
|
14
|
+
.argument("[claim...]", "an AI claim/output to screen")
|
|
15
|
+
.description("🧠 HALLUCINATION PROTECTION ENGINE — screen an AI claim through a mesh of INDEPENDENT nerves (statistical fallacy · self-contradiction · overconfidence · fabrication-risk · + external truth-grounding/consensus/injection). REFLEX-blocks any hard fault, ABSTAINS (REVIEW) when unverifiable, passes only well-calibrated claims → TRUSTED/REVIEW/BLOCK. HONEST: drives confidently-wrong → ~0 (precision-when-TRUSTED 1.0 measured), NOT 0% hallucination (impossible). TRUSTED = no KNOWN fault, not a proof of truth.")
|
|
16
|
+
.option("--json", "JSON output (signed)")
|
|
17
|
+
.action((claim, opts) => {
|
|
18
|
+
const q = Array.isArray(claim) ? claim.join(" ") : String(claim ?? "");
|
|
19
|
+
if (!q.trim()) {
|
|
20
|
+
out("usage: mneme protect \"<an AI claim>\"");
|
|
21
|
+
process.exitCode = 2;
|
|
22
|
+
return;
|
|
23
|
+
}
|
|
24
|
+
const r = hpe.protect(q);
|
|
25
|
+
let receipt = null;
|
|
26
|
+
try {
|
|
27
|
+
receipt = notary.issueReceipt(process.cwd(), { kind: "claim-verdict", subject: `hpe:${r.verdict}`, payload: { verdict: r.verdict, trust: r.trust, fired: r.fired.map((f) => f.nerve) }, includePayload: true });
|
|
28
|
+
}
|
|
29
|
+
catch { /* */ }
|
|
30
|
+
if (opts.json) {
|
|
31
|
+
out(JSON.stringify({ ...r, signed: receipt }, null, 2));
|
|
32
|
+
process.exitCode = r.verdict === "BLOCK" ? 2 : 0;
|
|
33
|
+
return;
|
|
34
|
+
}
|
|
35
|
+
const icon = r.verdict === "TRUSTED" ? "✓" : r.verdict === "REVIEW" ? "❔" : "🛑";
|
|
36
|
+
out(`${icon} ${r.verdict} (trust ${(r.trust * 100).toFixed(0)}%)`);
|
|
37
|
+
for (const f of r.fired) {
|
|
38
|
+
out(` • [${f.severity}] ${f.nerve}: ${f.why}`);
|
|
39
|
+
out(` fix: ${f.fix}`);
|
|
40
|
+
}
|
|
41
|
+
if (!r.fired.length)
|
|
42
|
+
out(` no nerve fired — no known fault (not a proof of truth).`);
|
|
43
|
+
process.exitCode = r.verdict === "BLOCK" ? 2 : 0;
|
|
44
|
+
});
|
|
45
|
+
g.command("bench")
|
|
46
|
+
.description("the signed A/B: precision-when-TRUSTED (no hallucination passes) + per-class containment, on a labeled corpus.")
|
|
47
|
+
.option("--json", "JSON output")
|
|
48
|
+
.action((opts) => {
|
|
49
|
+
const b = hpe.hpeBench();
|
|
50
|
+
let receipt = null;
|
|
51
|
+
try {
|
|
52
|
+
receipt = notary.issueReceipt(process.cwd(), { kind: "reasoning-trace", subject: `hpe.bench:p${b.precisionWhenTrusted}`, payload: { precisionWhenTrusted: b.precisionWhenTrusted, leaks: b.leaks.length }, includePayload: true });
|
|
53
|
+
}
|
|
54
|
+
catch { /* */ }
|
|
55
|
+
if (opts.json) {
|
|
56
|
+
out(JSON.stringify({ ...b, signed: receipt }, null, 2));
|
|
57
|
+
return;
|
|
58
|
+
}
|
|
59
|
+
out(`🧠 HPE — ${b.total} labeled claims (${b.risky} hallucination-class + ${b.safe} well-calibrated):`);
|
|
60
|
+
out(` ★ precision-when-TRUSTED: ${(b.precisionWhenTrusted * 100).toFixed(0)}% (${b.leaks.length} hallucination leaked as TRUSTED)`);
|
|
61
|
+
out(` hallucinations contained: ${b.hallucinationsBlockedOrReviewed}/${b.risky} · safe passed: ${b.safeTrusted}/${b.safe} (coverage ${(b.safeCoverage * 100).toFixed(0)}%)`);
|
|
62
|
+
out(` ${receipt ? "✓ signed · " : ""}HONEST: confidently-wrong → ~0 via reflex+abstain; NOT 0% hallucination (a novel failure no nerve models can still pass).`);
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
//# sourceMappingURL=hpe.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hpe.js","sourceRoot":"","sources":["../../src/commands/hpe.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,OAAO,EAAE,GAAG,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAE7C,SAAS,GAAG,CAAC,CAAS,IAAU,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;AAEjE,MAAM,UAAU,mBAAmB,CAAC,OAAgB;IAClD,MAAM,CAAC,GAAG,OAAO;SACd,OAAO,CAAC,SAAS,CAAC;SAClB,KAAK,CAAC,KAAK,CAAC;SACZ,QAAQ,CAAC,YAAY,EAAE,8BAA8B,CAAC;SACtD,WAAW,CAAC,6fAA6f,CAAC;SAC1gB,MAAM,CAAC,QAAQ,EAAE,sBAAsB,CAAC;SACxC,MAAM,CAAC,CAAC,KAA2B,EAAE,IAAwB,EAAE,EAAE;QAChE,MAAM,CAAC,GAAG,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC;QACvE,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC;YAAC,GAAG,CAAC,wCAAwC,CAAC,CAAC;YAAC,OAAO,CAAC,QAAQ,GAAG,CAAC,CAAC;YAAC,OAAO;QAAC,CAAC;QAC/F,MAAM,CAAC,GAAG,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;QACzB,IAAI,OAAO,GAAY,IAAI,CAAC;QAC5B,IAAI,CAAC;YAAC,OAAO,GAAG,MAAM,CAAC,YAAY,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,EAAE,IAAI,EAAE,eAAe,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE,OAAO,EAAE,EAAE,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE,KAAK,EAAE,CAAC,CAAC,KAAK,EAAE,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE,EAAE,cAAc,EAAE,IAAI,EAAE,CAAC,CAAC;QAAC,CAAC;QAAC,MAAM,CAAC,CAAC,KAAK,CAAC,CAAC;QACxO,IAAI,IAAI,CAAC,IAAI,EAAE,CAAC;YAAC,GAAG,CAAC,IAAI,CAAC,SAAS,CAAC,EAAE,GAAG,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;YAAC,OAAO,CAAC,QAAQ,GAAG,CAAC,CAAC,OAAO,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;YAAC,OAAO;QAAC,CAAC;QACrI,MAAM,IAAI,GAAG,CAAC,CAAC,OAAO,KAAK,SAAS,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,KAAK,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC;QACjF,GAAG,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,OAAO,YAAY,CAAC,CAAC,CAAC,KAAK,GAAG,GAAG,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;QACpE,KAAK,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,CAAC;YAAC,GAAG,CAAC,SAAS,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC;YAAC,GAAG,CAAC,aAAa,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC;QAAC,CAAC;QACzG,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM;YAAE,GAAG,CAAC,4DAA4D,CAAC,CAAC;QACvF,OAAO,CAAC,QAAQ,GAAG,CAAC,CAAC,OAAO,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;IACnD,CAAC,CAAC,CAAC;IAEL,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC;SACf,WAAW,CAAC,gHAAgH,CAAC;SAC7H,MAAM,CAAC,QAAQ,EAAE,aAAa,CAAC;SAC/B,MAAM,CAAC,CAAC,IAAwB,EAAE,EAAE;QACnC,MAAM,CAAC,GAAG,GAAG,CAAC,QAAQ,EAAE,CAAC;QACzB,IAAI,OAAO,GAAY,IAAI,CAAC;QAC5B,IAAI,CAAC;YAAC,OAAO,GAAG,MAAM,CAAC,YAAY,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,EAAE,IAAI,EAAE,iBAAiB,EAAE,OAAO,EAAE,cAAc,CAAC,CAAC,oBAAoB,EAAE,EAAE,OAAO,EAAE,EAAE,oBAAoB,EAAE,CAAC,CAAC,oBAAoB,EAAE,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,EAAE,EAAE,cAAc,EAAE,IAAI,EAAE,CAAC,CAAC;QAAC,CAAC;QAAC,MAAM,CAAC,CAAC,KAAK,CAAC,CAAC;QAC3P,IAAI,IAAI,CAAC,IAAI,EAAE,CAAC;YAAC,GAAG,CAAC,IAAI,CAAC,SAAS,CAAC,EAAE,GAAG,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;YAAC,OAAO;QAAC,CAAC;QACnF,GAAG,CAAC,YAAY,CAAC,CAAC,KAAK,oBAAoB,CAAC,CAAC,KAAK,0BAA0B,CAAC,CAAC,IAAI,oBAAoB,CAAC,CAAC;QACxG,GAAG,CAAC,gCAAgC,CAAC,CAAC,CAAC,oBAAoB,GAAG,GAAG,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,MAAM,mCAAmC,CAAC,CAAC;QACvI,GAAG,CAAC,gCAAgC,CAAC,CAAC,+BAA+B,IAAI,CAAC,CAAC,KAAK,oBAAoB,CAAC,CAAC,WAAW,IAAI,CAAC,CAAC,IAAI,cAAc,CAAC,CAAC,CAAC,YAAY,GAAG,GAAG,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;QAChL,GAAG,CAAC,MAAM,OAAO,CAAC,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC,EAAE,2HAA2H,CAAC,CAAC;IACrK,CAAC,CAAC,CAAC;AACP,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `mneme statguard` (v3.116.0) — catch statistical misinterpretations (p-value /
|
|
3
|
+
* CI / power) in a claim, grounded in Greenland et al. 2016. The anti-trap guard
|
|
4
|
+
* so an AI agent (or a researcher) never relays a documented statistics fallacy.
|
|
5
|
+
*
|
|
6
|
+
* mneme statguard "p > 0.05 so there is no effect"
|
|
7
|
+
* mneme statguard bench
|
|
8
|
+
*/
|
|
9
|
+
import type { Command } from "commander";
|
|
10
|
+
export declare function registerStatguardCommands(program: Command): void;
|
|
11
|
+
//# sourceMappingURL=statguard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"statguard.d.ts","sourceRoot":"","sources":["../../src/commands/statguard.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAKzC,wBAAgB,yBAAyB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CAiChE"}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `mneme statguard` (v3.116.0) — catch statistical misinterpretations (p-value /
|
|
3
|
+
* CI / power) in a claim, grounded in Greenland et al. 2016. The anti-trap guard
|
|
4
|
+
* so an AI agent (or a researcher) never relays a documented statistics fallacy.
|
|
5
|
+
*
|
|
6
|
+
* mneme statguard "p > 0.05 so there is no effect"
|
|
7
|
+
* mneme statguard bench
|
|
8
|
+
*/
|
|
9
|
+
import { statguard, notary } from "@mneme-ai/core";
|
|
10
|
+
function out(s) { process.stdout.write(s + "\n"); }
|
|
11
|
+
export function registerStatguardCommands(program) {
|
|
12
|
+
const g = program
|
|
13
|
+
.command("statguard")
|
|
14
|
+
.alias("stat-check")
|
|
15
|
+
.argument("[claim...]", "a statistical claim to check")
|
|
16
|
+
.description("📐 STATGUARD — flag documented statistical misinterpretations (p-value / confidence interval / power) in a claim, with the correct interpretation + the Greenland et al. 2016 citation. The anti-trap guard so an AI never relays a stats fallacy to a researcher/doctor/analyst. Deterministic; CLEAN = no KNOWN fallacy (not 'the stats are correct').")
|
|
17
|
+
.option("--json", "JSON output (signed)")
|
|
18
|
+
.action((claim, opts) => {
|
|
19
|
+
const q = Array.isArray(claim) ? claim.join(" ") : String(claim ?? "");
|
|
20
|
+
if (!q.trim()) {
|
|
21
|
+
out("usage: mneme statguard \"<a statistical claim>\"");
|
|
22
|
+
process.exitCode = 2;
|
|
23
|
+
return;
|
|
24
|
+
}
|
|
25
|
+
const r = statguard.checkStat(q);
|
|
26
|
+
let receipt = null;
|
|
27
|
+
try {
|
|
28
|
+
receipt = notary.issueReceipt(process.cwd(), { kind: "claim-verdict", subject: `statguard:${r.verdict}`, payload: { verdict: r.verdict, hits: r.hits.map((h) => h.id) }, includePayload: true });
|
|
29
|
+
}
|
|
30
|
+
catch { /* */ }
|
|
31
|
+
if (opts.json) {
|
|
32
|
+
out(JSON.stringify({ ...r, signed: receipt }, null, 2));
|
|
33
|
+
process.exitCode = r.verdict === "CLEAN" ? 0 : 2;
|
|
34
|
+
return;
|
|
35
|
+
}
|
|
36
|
+
if (r.verdict === "CLEAN") {
|
|
37
|
+
out(`✓ CLEAN — no known statistical misinterpretation detected.`);
|
|
38
|
+
process.exitCode = 0;
|
|
39
|
+
return;
|
|
40
|
+
}
|
|
41
|
+
out(`🛑 MISINTERPRETATION — ${r.hits.length} fallacy(ies):`);
|
|
42
|
+
for (const h of r.hits) {
|
|
43
|
+
out(` • ${h.name} [${h.ref}]`);
|
|
44
|
+
out(` why: ${h.why}`);
|
|
45
|
+
out(` fix: ${h.correct}`);
|
|
46
|
+
}
|
|
47
|
+
process.exitCode = 2;
|
|
48
|
+
});
|
|
49
|
+
g.command("bench")
|
|
50
|
+
.description("the signed A/B: detection recall on documented fallacies + precision (no false flag on correct statements).")
|
|
51
|
+
.option("--json", "JSON output")
|
|
52
|
+
.action((opts) => {
|
|
53
|
+
const b = statguard.statGuardBench();
|
|
54
|
+
let receipt = null;
|
|
55
|
+
try {
|
|
56
|
+
receipt = notary.issueReceipt(process.cwd(), { kind: "reasoning-trace", subject: `statguard.bench:r${b.recall}p${b.precision}`, payload: { recall: b.recall, precision: b.precision }, includePayload: true });
|
|
57
|
+
}
|
|
58
|
+
catch { /* */ }
|
|
59
|
+
if (opts.json) {
|
|
60
|
+
out(JSON.stringify({ ...b, signed: receipt }, null, 2));
|
|
61
|
+
return;
|
|
62
|
+
}
|
|
63
|
+
out(`📐 STATGUARD — ${b.total} labeled claims (${b.flaggable} fallacious + ${b.total - b.flaggable} correct):`);
|
|
64
|
+
out(` fallacies caught: ${b.caught}/${b.flaggable} · recall ${(b.recall * 100).toFixed(0)}%`);
|
|
65
|
+
out(` correct kept clean: ${b.cleanCorrect}/${b.total - b.flaggable} · precision ${(b.precision * 100).toFixed(0)}% (${b.falseFlags} false flag)`);
|
|
66
|
+
out(` ${receipt ? "✓ signed · " : ""}grounded in Greenland et al. 2016; deterministic pattern detector — CLEAN = no KNOWN fallacy, not a full stats proof.`);
|
|
67
|
+
});
|
|
68
|
+
}
|
|
69
|
+
//# sourceMappingURL=statguard.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"statguard.js","sourceRoot":"","sources":["../../src/commands/statguard.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAwMA,wBAAsB,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CA2mNvD"}
|
package/dist/index.js
CHANGED
|
@@ -129,6 +129,8 @@ import { registerMyceliumCommands } from "./commands/mycelium.js";
|
|
|
129
129
|
import { registerSiegeCommands } from "./commands/siege.js";
|
|
130
130
|
import { registerCanonCommands } from "./commands/canon.js";
|
|
131
131
|
import { registerSdcCommands } from "./commands/sdc.js";
|
|
132
|
+
import { registerStatguardCommands } from "./commands/statguard.js";
|
|
133
|
+
import { registerHpeCommands } from "./commands/hpe.js";
|
|
132
134
|
import { registerMoatCommands } from "./commands/moat.js";
|
|
133
135
|
import { attachRegretOracle } from "./commands/regret.js";
|
|
134
136
|
import { registerTrustCommands } from "./commands/trust.js";
|
|
@@ -4815,6 +4817,8 @@ export async function run(argv) {
|
|
|
4815
4817
|
registerSiegeCommands(program);
|
|
4816
4818
|
registerCanonCommands(program);
|
|
4817
4819
|
registerSdcCommands(program);
|
|
4820
|
+
registerStatguardCommands(program);
|
|
4821
|
+
registerHpeCommands(program);
|
|
4818
4822
|
registerMoatCommands(program);
|
|
4819
4823
|
// ─── Trust calibrator (v1.31.0) -- per-subsystem precision/recall/band
|
|
4820
4824
|
registerTrustCommands(program);
|