mneme-ai 2.135.0 → 2.137.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/elleipsis.d.ts +10 -0
- package/dist/commands/elleipsis.d.ts.map +1 -0
- package/dist/commands/elleipsis.js +64 -0
- package/dist/commands/elleipsis.js.map +1 -0
- package/dist/commands/stele.d.ts +14 -0
- package/dist/commands/stele.d.ts.map +1 -0
- package/dist/commands/stele.js +86 -0
- package/dist/commands/stele.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 +5 -5
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `mneme elleipsis` (v2.136.0) — the omission / completeness gate.
|
|
3
|
+
* Did the AI silently drop part of what you asked for?
|
|
4
|
+
*
|
|
5
|
+
* mneme elleipsis --request "add X and a test, don't touch auth" --output "<AI reply or diff>"
|
|
6
|
+
* mneme elleipsis --request-file ask.txt --output-file reply.txt --json
|
|
7
|
+
*/
|
|
8
|
+
import type { Command } from "commander";
|
|
9
|
+
export declare function registerElleipsisCommands(program: Command): void;
|
|
10
|
+
//# sourceMappingURL=elleipsis.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"elleipsis.d.ts","sourceRoot":"","sources":["../../src/commands/elleipsis.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAWzC,wBAAgB,yBAAyB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CAkChE"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `mneme elleipsis` (v2.136.0) — the omission / completeness gate.
|
|
3
|
+
* Did the AI silently drop part of what you asked for?
|
|
4
|
+
*
|
|
5
|
+
* mneme elleipsis --request "add X and a test, don't touch auth" --output "<AI reply or diff>"
|
|
6
|
+
* mneme elleipsis --request-file ask.txt --output-file reply.txt --json
|
|
7
|
+
*/
|
|
8
|
+
import { existsSync, readFileSync } from "node:fs";
|
|
9
|
+
import { elleipsis, notary } from "@mneme-ai/core";
|
|
10
|
+
function out(s) { process.stdout.write(s + "\n"); }
|
|
11
|
+
function readMaybe(inline, file) {
|
|
12
|
+
if (typeof inline === "string")
|
|
13
|
+
return inline;
|
|
14
|
+
if (file && existsSync(file)) {
|
|
15
|
+
try {
|
|
16
|
+
return readFileSync(file, "utf8");
|
|
17
|
+
}
|
|
18
|
+
catch { /* */ }
|
|
19
|
+
}
|
|
20
|
+
return "";
|
|
21
|
+
}
|
|
22
|
+
export function registerElleipsisCommands(program) {
|
|
23
|
+
program
|
|
24
|
+
.command("elleipsis")
|
|
25
|
+
.alias("omission")
|
|
26
|
+
.description("🕳 ELLEIPSIS — the completeness gate: extract the checkable asks from YOUR request and report which the AI's output COVERED / left UNADDRESSED / VIOLATED (a 'don't do X' it did). Catches the lie of omission — what the AI silently left out. Heuristic + prove-or-unknown (abstains to UNKNOWN; never fabricates a gap).")
|
|
27
|
+
.option("--request <t>", "your original request (what you asked the AI to do).")
|
|
28
|
+
.option("--request-file <p>", "read the request from a file.")
|
|
29
|
+
.option("--output <t>", "the AI's reply or diff to check for coverage.")
|
|
30
|
+
.option("--output-file <p>", "read the AI output from a file.")
|
|
31
|
+
.option("--json", "JSON output (full signed report).")
|
|
32
|
+
.action((opts) => {
|
|
33
|
+
const cwd = process.cwd();
|
|
34
|
+
const request = readMaybe(opts.request, opts.requestFile);
|
|
35
|
+
const output = readMaybe(opts.output, opts.outputFile);
|
|
36
|
+
if (!request) {
|
|
37
|
+
process.stderr.write("✗ requires --request \"...\" (or --request-file). What did you ask the AI to do?\n");
|
|
38
|
+
process.exitCode = 2;
|
|
39
|
+
return;
|
|
40
|
+
}
|
|
41
|
+
const r = elleipsis.elleipsisReport(request, output);
|
|
42
|
+
const receipt = notary.issueReceipt(cwd, { kind: "claim-verdict", subject: "elleipsis", payload: { atoms: r.atoms.length, unaddressed: r.unaddressed, violated: r.violated, completeness: Number(r.completenessScore.toFixed(3)) }, includePayload: true });
|
|
43
|
+
if (opts.json) {
|
|
44
|
+
out(JSON.stringify({ ...r, receipt }, null, 2));
|
|
45
|
+
process.exitCode = (r.unaddressed + r.violated) > 0 ? 2 : 0;
|
|
46
|
+
return;
|
|
47
|
+
}
|
|
48
|
+
const pct = Math.round(r.completenessScore * 100);
|
|
49
|
+
const icon = r.violated > 0 ? "🛑" : r.unaddressed > 0 ? "⚠️" : "✓";
|
|
50
|
+
out(`${icon} ELLEIPSIS — completeness ${pct}% · ${r.covered} covered · ${r.unaddressed} unaddressed · ${r.violated} violated · ${r.unknown} unknown (of ${r.atoms.length} ask(s))`);
|
|
51
|
+
for (const g of r.gaps.slice(0, 12)) {
|
|
52
|
+
const tag = g.coverage === "VIOLATED" ? "🛑 VIOLATED" : "⚠️ UNADDRESSED";
|
|
53
|
+
out(` ${tag}: "${g.atom.text}"\n ${g.reason}`);
|
|
54
|
+
}
|
|
55
|
+
if (r.unknown > 0) {
|
|
56
|
+
const unk = r.verdicts.filter((v) => v.coverage === "UNKNOWN").slice(0, 6);
|
|
57
|
+
if (unk.length)
|
|
58
|
+
out(` · ${r.unknown} UNKNOWN (worth a glance): ${unk.map((v) => `"${v.atom.text.slice(0, 32)}"`).join(" · ")}`);
|
|
59
|
+
}
|
|
60
|
+
out(` # ${r.note}`);
|
|
61
|
+
process.exitCode = (r.unaddressed + r.violated) > 0 ? 2 : 0;
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
//# sourceMappingURL=elleipsis.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"elleipsis.js","sourceRoot":"","sources":["../../src/commands/elleipsis.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `mneme stele` (v2.137.0) — the signed, merkle-rooted, delta-syncable
|
|
3
|
+
* capability inscription. An agent learns the WHOLE Mneme surface at O(delta)
|
|
4
|
+
* tokens and can PROVE it holds the latest, complete set.
|
|
5
|
+
*
|
|
6
|
+
* mneme stele # the current merkle root + count (signed)
|
|
7
|
+
* mneme stele --held <root> # delta vs what you hold (added/changed/removed)
|
|
8
|
+
* mneme stele --held-file held.json # held = {"root":"…","leaves":{name:hash}}
|
|
9
|
+
* mneme stele --verify <root> # is my held root current? (stale/tamper-evident)
|
|
10
|
+
* mneme stele --json
|
|
11
|
+
*/
|
|
12
|
+
import type { Command } from "commander";
|
|
13
|
+
export declare function registerSteleCommands(program: Command): void;
|
|
14
|
+
//# sourceMappingURL=stele.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stele.d.ts","sourceRoot":"","sources":["../../src/commands/stele.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAYzC,wBAAgB,qBAAqB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CA0C5D"}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `mneme stele` (v2.137.0) — the signed, merkle-rooted, delta-syncable
|
|
3
|
+
* capability inscription. An agent learns the WHOLE Mneme surface at O(delta)
|
|
4
|
+
* tokens and can PROVE it holds the latest, complete set.
|
|
5
|
+
*
|
|
6
|
+
* mneme stele # the current merkle root + count (signed)
|
|
7
|
+
* mneme stele --held <root> # delta vs what you hold (added/changed/removed)
|
|
8
|
+
* mneme stele --held-file held.json # held = {"root":"…","leaves":{name:hash}}
|
|
9
|
+
* mneme stele --verify <root> # is my held root current? (stale/tamper-evident)
|
|
10
|
+
* mneme stele --json
|
|
11
|
+
*/
|
|
12
|
+
import { existsSync, readFileSync } from "node:fs";
|
|
13
|
+
import { stele, notary, agentManifest } from "@mneme-ai/core";
|
|
14
|
+
function out(s) { process.stdout.write(s + "\n"); }
|
|
15
|
+
function catalogEntries() {
|
|
16
|
+
try {
|
|
17
|
+
return agentManifest.MNEME_COMMAND_CATALOG.map((c) => ({ name: c.command, version: c.since, summary: c.what }));
|
|
18
|
+
}
|
|
19
|
+
catch {
|
|
20
|
+
return [];
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
export function registerSteleCommands(program) {
|
|
24
|
+
program
|
|
25
|
+
.command("stele")
|
|
26
|
+
.description("🗿 STELE — the signed, merkle-rooted, delta-syncable inscription of Mneme's whole capability surface. An agent proves it holds the latest/complete set (merkle root) + pulls only the delta at boot (O(delta) tokens, not O(900 tools)). The honest fix for 'I didn't know that tool existed' + a stale manifest.")
|
|
27
|
+
.option("--held <root>", "the merkle root your agent currently holds (for a delta).")
|
|
28
|
+
.option("--held-file <p>", "JSON file: {\"root\":\"…\",\"leaves\":{\"name\":\"hash\"}} — full delta incl. tamper-detect.")
|
|
29
|
+
.option("--verify <root>", "verify a held root against the live catalog (stale/tamper-evident).")
|
|
30
|
+
.option("--json", "JSON output (signed).")
|
|
31
|
+
.action((opts) => {
|
|
32
|
+
const cwd = process.cwd();
|
|
33
|
+
const entries = catalogEntries();
|
|
34
|
+
if (opts.verify) {
|
|
35
|
+
const v = stele.verifyStele(entries, opts.verify);
|
|
36
|
+
if (opts.json) {
|
|
37
|
+
out(JSON.stringify(v, null, 2));
|
|
38
|
+
}
|
|
39
|
+
else {
|
|
40
|
+
out(`${v.ok ? "✓ CURRENT" : "🛑 STALE/TAMPERED"} — ${v.reason}\n live root: ${v.currentRoot}`);
|
|
41
|
+
}
|
|
42
|
+
process.exitCode = v.ok ? 0 : 2;
|
|
43
|
+
return;
|
|
44
|
+
}
|
|
45
|
+
let heldRoot = opts.held ?? "";
|
|
46
|
+
let heldLeaves;
|
|
47
|
+
if (opts.heldFile && existsSync(opts.heldFile)) {
|
|
48
|
+
try {
|
|
49
|
+
const j = JSON.parse(readFileSync(opts.heldFile, "utf8"));
|
|
50
|
+
heldRoot = typeof j.root === "string" ? j.root : heldRoot;
|
|
51
|
+
if (j.leaves && typeof j.leaves === "object")
|
|
52
|
+
heldLeaves = j.leaves;
|
|
53
|
+
}
|
|
54
|
+
catch { /* */ }
|
|
55
|
+
}
|
|
56
|
+
if (heldRoot || heldLeaves) {
|
|
57
|
+
const d = stele.steleDelta(entries, heldRoot, heldLeaves);
|
|
58
|
+
const receipt = notary.issueReceipt(cwd, { kind: "claim-verdict", subject: "stele.delta", payload: { currentRoot: d.currentRoot, upToDate: d.upToDate, added: d.added.length, changed: d.changed.length, removed: d.removed.length }, includePayload: true });
|
|
59
|
+
if (opts.json) {
|
|
60
|
+
out(JSON.stringify({ ...d, receipt }, null, 2));
|
|
61
|
+
return;
|
|
62
|
+
}
|
|
63
|
+
if (d.upToDate) {
|
|
64
|
+
out(`✓ UP TO DATE — ${d.note}\n root: ${d.currentRoot}`);
|
|
65
|
+
return;
|
|
66
|
+
}
|
|
67
|
+
out(`🔄 STELE delta — ${d.added.length} new · ${d.changed.length} changed · ${d.removed.length} removed (~${d.deltaTokenEstimate} tok vs ~${d.fullTokenEstimate} full)`);
|
|
68
|
+
for (const e of d.added.slice(0, 20))
|
|
69
|
+
out(` + ${e.name}${e.summary ? ` — ${e.summary.slice(0, 70)}` : ""}`);
|
|
70
|
+
for (const e of d.changed.slice(0, 20))
|
|
71
|
+
out(` ~ ${e.name}${e.summary ? ` — ${e.summary.slice(0, 70)}` : ""}`);
|
|
72
|
+
for (const n of d.removed.slice(0, 20))
|
|
73
|
+
out(` - ${n}`);
|
|
74
|
+
out(` new root: ${d.currentRoot} · receipt ${receipt.receiptId ? receipt.receiptId.slice(0, 12) + "…" : "(signed)"}`);
|
|
75
|
+
return;
|
|
76
|
+
}
|
|
77
|
+
const s = stele.buildStele(entries);
|
|
78
|
+
const receipt = notary.issueReceipt(cwd, { kind: "claim-verdict", subject: "stele.root", payload: { root: s.root, count: s.count }, includePayload: true });
|
|
79
|
+
if (opts.json) {
|
|
80
|
+
out(JSON.stringify({ root: s.root, count: s.count, receipt }, null, 2));
|
|
81
|
+
return;
|
|
82
|
+
}
|
|
83
|
+
out(`🗿 STELE — ${s.count} capabilities · merkle root:\n ${s.root}\n signed · pass --held <root> for a delta, --verify <root> to check freshness.`);
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
//# sourceMappingURL=stele.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stele.js","sourceRoot":"","sources":["../../src/commands/stele.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":"AA+JA,wBAAsB,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAqhNvD"}
|
package/dist/index.js
CHANGED
|
@@ -90,6 +90,8 @@ import { registerSettlementCommands } from "./commands/settlement.js";
|
|
|
90
90
|
import { registerFirewallCommands } from "./commands/firewall.js";
|
|
91
91
|
import { registerRailCommands } from "./commands/rail.js";
|
|
92
92
|
import { registerBootCommands } from "./commands/boot.js";
|
|
93
|
+
import { registerElleipsisCommands } from "./commands/elleipsis.js";
|
|
94
|
+
import { registerSteleCommands } from "./commands/stele.js";
|
|
93
95
|
import { registerTrustCommands } from "./commands/trust.js";
|
|
94
96
|
import { registerNuclearCommands } from "./commands/nuclear-cli.js";
|
|
95
97
|
import { registerOvernightCommand } from "./commands/overnight.js";
|
|
@@ -4729,6 +4731,8 @@ export async function run(argv) {
|
|
|
4729
4731
|
registerFirewallCommands(program);
|
|
4730
4732
|
registerRailCommands(program);
|
|
4731
4733
|
registerBootCommands(program);
|
|
4734
|
+
registerElleipsisCommands(program);
|
|
4735
|
+
registerSteleCommands(program);
|
|
4732
4736
|
// ─── Trust calibrator (v1.31.0) -- per-subsystem precision/recall/band
|
|
4733
4737
|
registerTrustCommands(program);
|
|
4734
4738
|
// ─── Wisdom reactor (v1.33.0) -- five nuclear-physics formulas as Mneme metrics
|