mneme-ai 3.142.0 → 3.144.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/honesty_ledger.d.ts +14 -0
- package/dist/commands/honesty_ledger.d.ts.map +1 -0
- package/dist/commands/honesty_ledger.js +90 -0
- package/dist/commands/honesty_ledger.js.map +1 -0
- package/dist/commands/mutagen.d.ts +14 -0
- package/dist/commands/mutagen.d.ts.map +1 -0
- package/dist/commands/mutagen.js +51 -0
- package/dist/commands/mutagen.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,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `mneme truthproof` (v3.143.0) — THE PUBLIC HONESTY LEDGER.
|
|
3
|
+
*
|
|
4
|
+
* Turns the zero-drift TRUTH GATE into a VISIBLE, offline-verifiable moat:
|
|
5
|
+
* emit — reconcile every public claim + emit a signed JSON + human markdown + badge
|
|
6
|
+
* verify — verify a pasted ledger OFFLINE (Ed25519, re-derives its own math)
|
|
7
|
+
* badge — print the honest Truth-Gate badge (green ONLY when drift+refuted=0)
|
|
8
|
+
*
|
|
9
|
+
* mneme truthproof emit --out docs/HONESTY-LEDGER.json --md docs/HONESTY-LEDGER.md --badge assets/honesty-badge.svg
|
|
10
|
+
* mneme truthproof verify --file docs/HONESTY-LEDGER.json
|
|
11
|
+
*/
|
|
12
|
+
import type { Command } from "commander";
|
|
13
|
+
export declare function registerLedgerCommands(program: Command): void;
|
|
14
|
+
//# sourceMappingURL=honesty_ledger.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"honesty_ledger.d.ts","sourceRoot":"","sources":["../../src/commands/honesty_ledger.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAWzC,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CA2C7D"}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `mneme truthproof` (v3.143.0) — THE PUBLIC HONESTY LEDGER.
|
|
3
|
+
*
|
|
4
|
+
* Turns the zero-drift TRUTH GATE into a VISIBLE, offline-verifiable moat:
|
|
5
|
+
* emit — reconcile every public claim + emit a signed JSON + human markdown + badge
|
|
6
|
+
* verify — verify a pasted ledger OFFLINE (Ed25519, re-derives its own math)
|
|
7
|
+
* badge — print the honest Truth-Gate badge (green ONLY when drift+refuted=0)
|
|
8
|
+
*
|
|
9
|
+
* mneme truthproof emit --out docs/HONESTY-LEDGER.json --md docs/HONESTY-LEDGER.md --badge assets/honesty-badge.svg
|
|
10
|
+
* mneme truthproof verify --file docs/HONESTY-LEDGER.json
|
|
11
|
+
*/
|
|
12
|
+
import { readFileSync, writeFileSync } from "node:fs";
|
|
13
|
+
import { honestyLedger } from "@mneme-ai/core";
|
|
14
|
+
function out(s) { process.stdout.write(s + "\n"); }
|
|
15
|
+
function version() {
|
|
16
|
+
try {
|
|
17
|
+
return JSON.parse(readFileSync(new URL("../../package.json", import.meta.url), "utf8")).version;
|
|
18
|
+
}
|
|
19
|
+
catch {
|
|
20
|
+
return "0.0.0";
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
export function registerLedgerCommands(program) {
|
|
24
|
+
const c = program.command("truthproof")
|
|
25
|
+
.description("🛡 PUBLIC HONESTY LEDGER — a signed, offline-verifiable record that every public Mneme claim currently passes its probe (zero drift). The badge cannot be faked green. Verify offline: `mneme truthproof verify`.");
|
|
26
|
+
c.command("emit").description("reconcile every claim + emit a signed public ledger (JSON + markdown + badge)")
|
|
27
|
+
.option("--out <file>", "write signed JSON ledger to file")
|
|
28
|
+
.option("--md <file>", "write human markdown to file")
|
|
29
|
+
.option("--badge <file>", "write the SVG badge to file")
|
|
30
|
+
.option("--json", "print the signed receipt JSON to stdout")
|
|
31
|
+
.action(async (o) => {
|
|
32
|
+
const { ledger, receipt } = await honestyLedger.buildHonestyLedger(process.cwd(), version());
|
|
33
|
+
if (o.out)
|
|
34
|
+
writeFileSync(o.out, JSON.stringify(receipt, null, 2) + "\n");
|
|
35
|
+
if (o.md)
|
|
36
|
+
writeFileSync(o.md, honestyLedger.ledgerMarkdown(ledger, receipt) + "\n");
|
|
37
|
+
if (o.badge)
|
|
38
|
+
writeFileSync(o.badge, honestyLedger.badgeSVG(ledger.summary) + "\n");
|
|
39
|
+
if (o.json) {
|
|
40
|
+
out(JSON.stringify(receipt, null, 2));
|
|
41
|
+
return;
|
|
42
|
+
}
|
|
43
|
+
const s = ledger.summary;
|
|
44
|
+
out(`🛡 HONESTY LEDGER — mneme@${ledger.version}`);
|
|
45
|
+
out(` ${s.honest ? "🟢 ZERO-DRIFT" : "⚠ DRIFTING"} · ${s.pass}/${s.measured} claims pass · drift ${s.drift} · refuted ${s.refuted} · unmeasured ${s.unmeasured} · score ${s.score}/100`);
|
|
46
|
+
out(` signed ${receipt.issuerFingerprint} · receipt ${receipt.receiptId.slice(0, 16)}…`);
|
|
47
|
+
if (o.out || o.md || o.badge)
|
|
48
|
+
out(` wrote: ${[o.out, o.md, o.badge].filter(Boolean).join(", ")}`);
|
|
49
|
+
else
|
|
50
|
+
out(` (add --out/--md/--badge to write artifacts; --json for the signed receipt)`);
|
|
51
|
+
});
|
|
52
|
+
c.command("verify").description("verify a public honesty ledger OFFLINE (Ed25519 + re-derives its own math)")
|
|
53
|
+
.option("--file <file>", "ledger receipt JSON file")
|
|
54
|
+
.action((o) => {
|
|
55
|
+
let raw = "";
|
|
56
|
+
try {
|
|
57
|
+
raw = o.file ? readFileSync(o.file, "utf8") : readFileSync(0, "utf8");
|
|
58
|
+
}
|
|
59
|
+
catch {
|
|
60
|
+
out("⛔ provide --file <ledger.json> (or pipe the JSON on stdin)");
|
|
61
|
+
process.exitCode = 2;
|
|
62
|
+
return;
|
|
63
|
+
}
|
|
64
|
+
let receipt;
|
|
65
|
+
try {
|
|
66
|
+
receipt = JSON.parse(raw);
|
|
67
|
+
}
|
|
68
|
+
catch {
|
|
69
|
+
out("⛔ not valid JSON");
|
|
70
|
+
process.exitCode = 2;
|
|
71
|
+
return;
|
|
72
|
+
}
|
|
73
|
+
const v = honestyLedger.verifyHonestyLedger(receipt);
|
|
74
|
+
if (!v.valid) {
|
|
75
|
+
out(`🔴 INVALID — ${v.reason}`);
|
|
76
|
+
process.exitCode = 1;
|
|
77
|
+
return;
|
|
78
|
+
}
|
|
79
|
+
out(`🟢 VALID${v.honest ? " · HONEST (zero drift)" : " · ⚠ DRIFTING"} — ${v.summary.pass}/${v.summary.measured} pass, drift ${v.summary.drift}, refuted ${v.summary.refuted} (score ${v.summary.score}/100)`);
|
|
80
|
+
if (!v.honest)
|
|
81
|
+
process.exitCode = 1;
|
|
82
|
+
});
|
|
83
|
+
c.command("badge").description("print the honest Truth-Gate badge (SVG, or --shields for shields.io JSON)")
|
|
84
|
+
.option("--shields", "emit shields.io endpoint JSON instead of SVG")
|
|
85
|
+
.action(async (o) => {
|
|
86
|
+
const { ledger } = await honestyLedger.buildHonestyLedger(process.cwd(), version());
|
|
87
|
+
out(o.shields ? JSON.stringify(honestyLedger.badgeShields(ledger.summary)) : honestyLedger.badgeSVG(ledger.summary));
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
//# sourceMappingURL=honesty_ledger.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"honesty_ledger.js","sourceRoot":"","sources":["../../src/commands/honesty_ledger.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `mneme mutagen` (v3.144.0) — the adversarial-mutation engine that finds an AI
|
|
3
|
+
* agent's guardrail holes BEFORE anyone exploits them.
|
|
4
|
+
*
|
|
5
|
+
* hunt — derive a population of novel attack variants (primitive × mutators)
|
|
6
|
+
* and report which BREACH a guardrail (default: Mneme's own normalization
|
|
7
|
+
* defense vs a naive substring guard, to show the gap).
|
|
8
|
+
* variants — list the derived attack variants (the searched space).
|
|
9
|
+
*
|
|
10
|
+
* mneme mutagen hunt
|
|
11
|
+
*/
|
|
12
|
+
import type { Command } from "commander";
|
|
13
|
+
export declare function registerMutagenCommands(program: Command): void;
|
|
14
|
+
//# sourceMappingURL=mutagen.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mutagen.d.ts","sourceRoot":"","sources":["../../src/commands/mutagen.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAKzC,wBAAgB,uBAAuB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CA8B9D"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `mneme mutagen` (v3.144.0) — the adversarial-mutation engine that finds an AI
|
|
3
|
+
* agent's guardrail holes BEFORE anyone exploits them.
|
|
4
|
+
*
|
|
5
|
+
* hunt — derive a population of novel attack variants (primitive × mutators)
|
|
6
|
+
* and report which BREACH a guardrail (default: Mneme's own normalization
|
|
7
|
+
* defense vs a naive substring guard, to show the gap).
|
|
8
|
+
* variants — list the derived attack variants (the searched space).
|
|
9
|
+
*
|
|
10
|
+
* mneme mutagen hunt
|
|
11
|
+
*/
|
|
12
|
+
import { mutagen } from "@mneme-ai/core";
|
|
13
|
+
function out(s) { process.stdout.write(s + "\n"); }
|
|
14
|
+
export function registerMutagenCommands(program) {
|
|
15
|
+
const c = program.command("mutagen")
|
|
16
|
+
.description("🧬 MUTAGEN — derive NOVEL attack variants (primitive × mutator combos) and measure which slip past a guardrail. Finds the not-yet-seen attack by SEARCHING the mutation space, then self-hardens. ★HONEST: finds breaches in a given guard over a known space — not magic 'any bug'.");
|
|
17
|
+
c.command("hunt").description("derive attack variants + report breaches against the naive vs the sound guard")
|
|
18
|
+
.option("--combo <n>", "max mutators stacked per variant (1-3)", "2")
|
|
19
|
+
.option("--json", "JSON")
|
|
20
|
+
.action((o) => {
|
|
21
|
+
const maxCombo = parseInt(o.combo, 10) || 2;
|
|
22
|
+
const naive = mutagen.hunt(mutagen.naiveGuard, { maxCombo });
|
|
23
|
+
const sound = mutagen.hunt(mutagen.soundGuard, { maxCombo });
|
|
24
|
+
if (o.json) {
|
|
25
|
+
out(JSON.stringify({ naive, sound }, null, 2));
|
|
26
|
+
return;
|
|
27
|
+
}
|
|
28
|
+
out(`🧬 MUTAGEN — searched ${naive.tested} novel variants (${maxCombo}-deep mutator stacks)`);
|
|
29
|
+
out(` naive substring guard: ${Math.round(naive.breachRate * 100)}% BREACH (${naive.breaches.length}/${naive.tested} slip past)`);
|
|
30
|
+
out(` Mneme normalize guard: ${Math.round(sound.breachRate * 100)}% breach (${sound.breaches.length}/${sound.tested}) — caught ${Math.round(sound.caughtRate * 100)}%`);
|
|
31
|
+
out(` top "killer combos" vs the naive guard (the mutator stacks that breach most):`);
|
|
32
|
+
for (const k of naive.killerCombos.slice(0, 5))
|
|
33
|
+
out(` ✦ [${k.mutators}] — ${k.breaches} breaches`);
|
|
34
|
+
if (sound.breaches.length) {
|
|
35
|
+
out(` residual holes MUTAGEN found in Mneme's OWN guard (honest):`);
|
|
36
|
+
for (const k of sound.killerCombos.slice(0, 3))
|
|
37
|
+
out(` ⚠ [${k.mutators}] — ${k.breaches}`);
|
|
38
|
+
}
|
|
39
|
+
else
|
|
40
|
+
out(` ✅ Mneme's normalize guard caught EVERY derived variant.`);
|
|
41
|
+
});
|
|
42
|
+
c.command("variants").description("list the derived attack variants (the searched mutation space)")
|
|
43
|
+
.option("--combo <n>", "max mutators stacked", "2").option("--limit <n>", "max shown", "20")
|
|
44
|
+
.action((o) => {
|
|
45
|
+
const v = mutagen.deriveVariants(undefined, undefined, { maxCombo: parseInt(o.combo, 10) || 2 });
|
|
46
|
+
out(`🧬 ${v.length} derived variants (showing ${Math.min(v.length, parseInt(o.limit, 10) || 20)}):`);
|
|
47
|
+
for (const x of v.slice(0, parseInt(o.limit, 10) || 20))
|
|
48
|
+
out(` [${x.class}] ${x.id}`);
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
//# sourceMappingURL=mutagen.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mutagen.js","sourceRoot":"","sources":["../../src/commands/mutagen.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":"AAmNA,wBAAsB,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAsnNvD"}
|
package/dist/index.js
CHANGED
|
@@ -140,6 +140,8 @@ import { registerCtxCommands } from "./commands/ctx.js";
|
|
|
140
140
|
import { registerLaunchCommands } from "./commands/launch.js";
|
|
141
141
|
import { registerArkCommands } from "./commands/ark.js";
|
|
142
142
|
import { registerCosmosCommands } from "./commands/cosmos.js";
|
|
143
|
+
import { registerLedgerCommands } from "./commands/honesty_ledger.js";
|
|
144
|
+
import { registerMutagenCommands } from "./commands/mutagen.js";
|
|
143
145
|
import { registerMoatCommands } from "./commands/moat.js";
|
|
144
146
|
import { attachRegretOracle } from "./commands/regret.js";
|
|
145
147
|
import { registerTrustCommands } from "./commands/trust.js";
|
|
@@ -4837,6 +4839,8 @@ export async function run(argv) {
|
|
|
4837
4839
|
registerLaunchCommands(program);
|
|
4838
4840
|
registerArkCommands(program);
|
|
4839
4841
|
registerCosmosCommands(program);
|
|
4842
|
+
registerLedgerCommands(program);
|
|
4843
|
+
registerMutagenCommands(program);
|
|
4840
4844
|
registerMoatCommands(program);
|
|
4841
4845
|
// ─── Trust calibrator (v1.31.0) -- per-subsystem precision/recall/band
|
|
4842
4846
|
registerTrustCommands(program);
|