mneme-ai 2.149.0 → 2.150.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/moat.d.ts +12 -0
- package/dist/commands/moat.d.ts.map +1 -0
- package/dist/commands/moat.js +79 -0
- package/dist/commands/moat.js.map +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `mneme moat` (v2.150.0) — the deterministic, signed competitive-moat scorer.
|
|
3
|
+
* Scores Mneme's moat from REAL present capabilities + their MEASURED signals
|
|
4
|
+
* (live SIEGE resistance, Gateway accuracy, gauntlet scores). `moat delta` shows
|
|
5
|
+
* the before→after lift from this session's moat builders.
|
|
6
|
+
*
|
|
7
|
+
* mneme moat # current moat score + per-dimension breakdown (signed)
|
|
8
|
+
* mneme moat delta # pre-session baseline → current (measured improvement)
|
|
9
|
+
*/
|
|
10
|
+
import type { Command } from "commander";
|
|
11
|
+
export declare function registerMoatCommands(program: Command): void;
|
|
12
|
+
//# sourceMappingURL=moat.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"moat.d.ts","sourceRoot":"","sources":["../../src/commands/moat.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAyBzC,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CA4B3D"}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `mneme moat` (v2.150.0) — the deterministic, signed competitive-moat scorer.
|
|
3
|
+
* Scores Mneme's moat from REAL present capabilities + their MEASURED signals
|
|
4
|
+
* (live SIEGE resistance, Gateway accuracy, gauntlet scores). `moat delta` shows
|
|
5
|
+
* the before→after lift from this session's moat builders.
|
|
6
|
+
*
|
|
7
|
+
* mneme moat # current moat score + per-dimension breakdown (signed)
|
|
8
|
+
* mneme moat delta # pre-session baseline → current (measured improvement)
|
|
9
|
+
*/
|
|
10
|
+
import { moat as mt, siege as sg, intentGateway as gw, mycelium as myc, canon as cn, agentGovernor as gov, hephaestus, notary } from "@mneme-ai/core";
|
|
11
|
+
function out(s) { process.stdout.write(s + "\n"); }
|
|
12
|
+
/** Gather REAL measured signals live (not hardcoded). */
|
|
13
|
+
function liveSignals() {
|
|
14
|
+
let siegeResistanceLB = 0, gatewayAccuracy = 0;
|
|
15
|
+
try {
|
|
16
|
+
siegeResistanceLB = sg.scoreSiege(sg.siege((c) => hephaestus.classifyCommandRisk(c).risk === "destructive" ? "COSIGN" : "ALLOW")).resistanceLB;
|
|
17
|
+
}
|
|
18
|
+
catch { /* */ }
|
|
19
|
+
try {
|
|
20
|
+
gatewayAccuracy = gw.benchmark().newAcc;
|
|
21
|
+
}
|
|
22
|
+
catch { /* */ }
|
|
23
|
+
return {
|
|
24
|
+
siegeResistanceLB, gatewayAccuracy,
|
|
25
|
+
myceliumGauntlet: safe(() => myc.myceliumGauntlet().score),
|
|
26
|
+
canonGauntlet: safe(() => cn.canonGauntlet().score),
|
|
27
|
+
governorGauntlet: safe(() => gov.governorGauntlet().score),
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
function safe(f) { try {
|
|
31
|
+
return f();
|
|
32
|
+
}
|
|
33
|
+
catch {
|
|
34
|
+
return 0;
|
|
35
|
+
} }
|
|
36
|
+
function render(title, r) {
|
|
37
|
+
const icon = r.band === "FORTRESS" ? "🏰" : r.band === "STRONG" ? "🛡" : r.band === "FORMING" ? "🧱" : "🕳";
|
|
38
|
+
out(`${icon} ${title} — ${r.overall}/100 (${r.band})`);
|
|
39
|
+
for (const d of r.dimensions)
|
|
40
|
+
out(` ${d.dimension.padEnd(24)} ${String(d.score).padStart(3)} · ${d.basis}`);
|
|
41
|
+
}
|
|
42
|
+
export function registerMoatCommands(program) {
|
|
43
|
+
const m = program
|
|
44
|
+
.command("moat")
|
|
45
|
+
.description("📊 MOAT — a deterministic, SIGNED competitive-moat scorer. Not an opinion: a number computed from REAL present capabilities × their MEASURED signals (live SIEGE gate-resistance, Gateway routing accuracy, the mycelium/canon/governor gauntlets, signed-primitive depth, locally-accumulating ledgers = switching cost). `mneme moat` (current) · `mneme moat delta` (before→after). HONEST: engineering-moat signals verifiable in-repo — NOT a market valuation / traction / 'uncatchable' claim.")
|
|
46
|
+
.option("--json", "JSON output (signed)")
|
|
47
|
+
.action((opts) => {
|
|
48
|
+
const r = mt.scoreMoat({ capabilities: mt.CURRENT_CAPS, signals: liveSignals() });
|
|
49
|
+
let receipt = null;
|
|
50
|
+
try {
|
|
51
|
+
receipt = notary.issueReceipt(process.cwd(), { kind: "claim-verdict", subject: `moat:${r.overall}`, payload: { overall: r.overall, band: r.band }, includePayload: true });
|
|
52
|
+
}
|
|
53
|
+
catch { /* */ }
|
|
54
|
+
if (opts.json) {
|
|
55
|
+
out(JSON.stringify({ ...r, signed: receipt }, null, 2));
|
|
56
|
+
return;
|
|
57
|
+
}
|
|
58
|
+
render("MNEME MOAT", r);
|
|
59
|
+
out(` ${receipt ? "✓ signed · " : ""}${r.note}`);
|
|
60
|
+
});
|
|
61
|
+
m.command("delta")
|
|
62
|
+
.description("the before→after moat lift from this session's moat builders (baseline caps vs current).")
|
|
63
|
+
.option("--json", "JSON output")
|
|
64
|
+
.action((opts) => {
|
|
65
|
+
const sig = liveSignals();
|
|
66
|
+
const before = mt.scoreMoat({ capabilities: mt.BASELINE_CAPS, signals: sig });
|
|
67
|
+
const after = mt.scoreMoat({ capabilities: mt.CURRENT_CAPS, signals: sig });
|
|
68
|
+
if (opts.json) {
|
|
69
|
+
out(JSON.stringify({ before, after, delta: after.overall - before.overall }, null, 2));
|
|
70
|
+
return;
|
|
71
|
+
}
|
|
72
|
+
render("BEFORE (pre-session baseline)", before);
|
|
73
|
+
out("");
|
|
74
|
+
render("AFTER (current)", after);
|
|
75
|
+
out("");
|
|
76
|
+
out(` 📈 measured moat lift: +${after.overall - before.overall} (${before.overall}→${after.overall}, ${before.band}→${after.band})`);
|
|
77
|
+
});
|
|
78
|
+
}
|
|
79
|
+
//# sourceMappingURL=moat.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"moat.js","sourceRoot":"","sources":["../../src/commands/moat.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":"AA2KA,wBAAsB,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CA2kNvD"}
|
package/dist/index.js
CHANGED
|
@@ -102,6 +102,7 @@ import { registerGatewayCommands } from "./commands/gateway.js";
|
|
|
102
102
|
import { registerMyceliumCommands } from "./commands/mycelium.js";
|
|
103
103
|
import { registerSiegeCommands } from "./commands/siege.js";
|
|
104
104
|
import { registerCanonCommands } from "./commands/canon.js";
|
|
105
|
+
import { registerMoatCommands } from "./commands/moat.js";
|
|
105
106
|
import { attachRegretOracle } from "./commands/regret.js";
|
|
106
107
|
import { registerTrustCommands } from "./commands/trust.js";
|
|
107
108
|
import { registerNuclearCommands } from "./commands/nuclear-cli.js";
|
|
@@ -4757,6 +4758,7 @@ export async function run(argv) {
|
|
|
4757
4758
|
registerMyceliumCommands(program);
|
|
4758
4759
|
registerSiegeCommands(program);
|
|
4759
4760
|
registerCanonCommands(program);
|
|
4761
|
+
registerMoatCommands(program);
|
|
4760
4762
|
// ─── Trust calibrator (v1.31.0) -- per-subsystem precision/recall/band
|
|
4761
4763
|
registerTrustCommands(program);
|
|
4762
4764
|
// ─── Wisdom reactor (v1.33.0) -- five nuclear-physics formulas as Mneme metrics
|