mneme-ai 2.173.0 → 2.187.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/goldilocks.d.ts +13 -0
- package/dist/commands/goldilocks.d.ts.map +1 -0
- package/dist/commands/goldilocks.js +52 -0
- package/dist/commands/goldilocks.js.map +1 -0
- package/dist/commands/xray.d.ts +17 -0
- package/dist/commands/xray.d.ts.map +1 -0
- package/dist/commands/xray.js +83 -0
- package/dist/commands/xray.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 -5
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `mneme goldilocks` (v2.174) — config-fragility / "habitable-zone" analyzer.
|
|
3
|
+
* The honest core of the cosmic fine-tuning idea: find the band of values where
|
|
4
|
+
* a config still works + how close your current value is to the nearest cliff.
|
|
5
|
+
*
|
|
6
|
+
* mneme goldilocks # self-test (gauntlet 100)
|
|
7
|
+
* mneme goldilocks scan --cmd "node bench.js {v}" --param max_tokens --lo 256 --hi 16000 --current 4000
|
|
8
|
+
* → runs the command with {v} substituted (exit 0 = pass), bisects the cliffs,
|
|
9
|
+
* and reports ROBUST / TIGHT / KNIFE-EDGE / UNSTABLE + the margin.
|
|
10
|
+
*/
|
|
11
|
+
import type { Command } from "commander";
|
|
12
|
+
export declare function registerGoldilocksCommands(program: Command): void;
|
|
13
|
+
//# sourceMappingURL=goldilocks.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"goldilocks.d.ts","sourceRoot":"","sources":["../../src/commands/goldilocks.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AACH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAMzC,wBAAgB,0BAA0B,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CAkCjE"}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { spawnSync } from "node:child_process";
|
|
2
|
+
import { goldilocks, notary } from "@mneme-ai/core";
|
|
3
|
+
function out(s) { process.stdout.write(s + "\n"); }
|
|
4
|
+
export function registerGoldilocksCommands(program) {
|
|
5
|
+
const g = program
|
|
6
|
+
.command("goldilocks")
|
|
7
|
+
.description("🌗 GOLDILOCKS — config-fragility analyzer. Given a numeric config value, a range, and a pass/fail command, it finds the 'habitable zone' (the band where the system still works) by bisecting to each cliff, and tells you how close your value sits to breaking: ROBUST / TIGHT / KNIFE-EDGE / UNSTABLE. The honest engineering core of 'fine-tuning' — sensitivity analysis on an oracle you supply, not cosmology.")
|
|
8
|
+
.action(() => {
|
|
9
|
+
const r = goldilocks.goldilocksGauntlet();
|
|
10
|
+
out(`🌗 GOLDILOCKS — habitable-zone analyzer self-test (gauntlet ${r.score}/100)`);
|
|
11
|
+
for (const c of r.checks)
|
|
12
|
+
out(` ${c.pass ? "✓" : "✗"} ${c.name.padEnd(18)} ${c.detail}`);
|
|
13
|
+
process.exitCode = r.score === 100 ? 0 : 2;
|
|
14
|
+
});
|
|
15
|
+
g.command("scan")
|
|
16
|
+
.description("find the habitable zone of a config value via a pass/fail command (exit 0 = pass). exit 2 if TIGHT/KNIFE-EDGE/UNSTABLE.")
|
|
17
|
+
.requiredOption("--cmd <cmd>", "shell command with {v} substituted for the candidate value; exit 0 = pass")
|
|
18
|
+
.requiredOption("--lo <n>", "low end of the search range", parseFloat)
|
|
19
|
+
.requiredOption("--hi <n>", "high end of the search range", parseFloat)
|
|
20
|
+
.requiredOption("--current <n>", "the current/configured value", parseFloat)
|
|
21
|
+
.option("--param <name>", "a label for the parameter", "value")
|
|
22
|
+
.option("--json", "JSON output")
|
|
23
|
+
.action((opts) => {
|
|
24
|
+
const oracle = (v) => {
|
|
25
|
+
const cmd = opts.cmd.replace(/\{v\}/g, String(v));
|
|
26
|
+
try {
|
|
27
|
+
return spawnSync(cmd, { shell: true, stdio: "ignore", timeout: 120_000 }).status === 0;
|
|
28
|
+
}
|
|
29
|
+
catch {
|
|
30
|
+
return false;
|
|
31
|
+
}
|
|
32
|
+
};
|
|
33
|
+
const z = goldilocks.habitableZone(oracle, { lo: opts.lo, hi: opts.hi, current: opts.current });
|
|
34
|
+
let signed = { param: opts.param, ...z };
|
|
35
|
+
try {
|
|
36
|
+
signed = { ...signed, _proof: notary.issueReceipt(process.cwd(), { kind: "claim-verdict", subject: `goldilocks:${opts.param}`, payload: { verdict: z.verdict, margin: z.margin }, includePayload: true }) };
|
|
37
|
+
}
|
|
38
|
+
catch { /* unsigned */ }
|
|
39
|
+
if (opts.json) {
|
|
40
|
+
out(JSON.stringify(signed, null, 2));
|
|
41
|
+
process.exitCode = z.verdict === "ROBUST" ? 0 : 2;
|
|
42
|
+
return;
|
|
43
|
+
}
|
|
44
|
+
const icon = z.verdict === "ROBUST" ? "✓" : z.verdict === "UNSTABLE" ? "🛑" : "⚠";
|
|
45
|
+
out(`${icon} ${opts.param} = ${opts.current} → ${z.verdict}`);
|
|
46
|
+
if (z.passesNow)
|
|
47
|
+
out(` habitable zone: [${z.lowOpen ? "≤" : ""}${z.lowEdge.toPrecision(5)}, ${z.highEdge.toPrecision(5)}${z.highOpen ? "+" : ""}] · nearest cliff ${z.margin.toPrecision(4)} away (${(z.marginPct * 100).toFixed(1)}% of range)`);
|
|
48
|
+
out(` ${z.reason}`);
|
|
49
|
+
process.exitCode = z.verdict === "ROBUST" ? 0 : 2;
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
|
+
//# sourceMappingURL=goldilocks.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"goldilocks.js","sourceRoot":"","sources":["../../src/commands/goldilocks.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `mneme xray` (v2.187.0) — the Repo X-Ray, from the CLI. Runs the deterministic,
|
|
3
|
+
* signed, raw-free audit (deps · secrets · bus-factor · age · complexity · hotspots
|
|
4
|
+
* · coupling · security) on a local repo or a public git URL, and prints the grade +
|
|
5
|
+
* the team-intelligence gems (Keystone risk · Action plan · Momentum · Onboarding).
|
|
6
|
+
*
|
|
7
|
+
* mneme xray # analyse the current repo
|
|
8
|
+
* mneme xray ./path/to/repo # analyse a local path
|
|
9
|
+
* mneme xray https://github.com/owner/repo [--branch main]
|
|
10
|
+
* mneme xray --json # the full signed report
|
|
11
|
+
*
|
|
12
|
+
* The xray engine lives in @mneme-ai/xray (bundled with the CLI). Lazy-imported +
|
|
13
|
+
* fail-open so the core CLI still runs if the optional analysis package is absent.
|
|
14
|
+
*/
|
|
15
|
+
import type { Command } from "commander";
|
|
16
|
+
export declare function registerXrayCommands(program: Command): void;
|
|
17
|
+
//# sourceMappingURL=xray.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"xray.d.ts","sourceRoot":"","sources":["../../src/commands/xray.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AACH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AA0BzC,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CAuD3D"}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { existsSync } from "node:fs";
|
|
2
|
+
function out(s) { process.stdout.write(s + "\n"); }
|
|
3
|
+
async function load() {
|
|
4
|
+
try {
|
|
5
|
+
return (await import("@mneme-ai/xray"));
|
|
6
|
+
}
|
|
7
|
+
catch {
|
|
8
|
+
out("🩻 the X-Ray engine needs @mneme-ai/xray — install it: npm i @mneme-ai/xray");
|
|
9
|
+
return null;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
const base = (f) => { const p = String(f).split("/"); return p[p.length - 1] || f; };
|
|
13
|
+
export function registerXrayCommands(program) {
|
|
14
|
+
program
|
|
15
|
+
.command("xray [target]")
|
|
16
|
+
.description("🩻 REPO X-RAY — a signed, deterministic audit of any repo (deps · secrets · bus-factor · age · complexity · coupling · security) + the team-intelligence gems (Keystone risk · Action plan · Momentum · Onboarding). No LLM guesses any number; the report is offline-verifiable. Pass a local path (default: current repo) or a public git URL.")
|
|
17
|
+
.option("--branch <name>", "branch to analyse (git-URL target)")
|
|
18
|
+
.option("--max-files <n>", "cap files scanned (perf bound)")
|
|
19
|
+
.option("--json", "print the full signed report as JSON")
|
|
20
|
+
.action(async (target, opts) => {
|
|
21
|
+
const api = await load();
|
|
22
|
+
if (!api) {
|
|
23
|
+
process.exitCode = 2;
|
|
24
|
+
return;
|
|
25
|
+
}
|
|
26
|
+
const isUrl = !!target && /^(https?:\/\/|git@)/.test(target);
|
|
27
|
+
const repoPath = isUrl ? undefined : (target || process.cwd());
|
|
28
|
+
if (repoPath && !existsSync(repoPath)) {
|
|
29
|
+
out(`path not found: ${repoPath}`);
|
|
30
|
+
process.exitCode = 2;
|
|
31
|
+
return;
|
|
32
|
+
}
|
|
33
|
+
const maxFiles = opts.maxFiles ? parseInt(opts.maxFiles, 10) : undefined;
|
|
34
|
+
let report;
|
|
35
|
+
try {
|
|
36
|
+
report = await api.buildXRay(isUrl ? { gitUrl: target, branch: opts.branch, maxFiles } : { repoPath, maxFiles });
|
|
37
|
+
}
|
|
38
|
+
catch (e) {
|
|
39
|
+
out(`🩻 X-Ray failed: ${e.message}`);
|
|
40
|
+
process.exitCode = 2;
|
|
41
|
+
return;
|
|
42
|
+
}
|
|
43
|
+
if (opts.json) {
|
|
44
|
+
try {
|
|
45
|
+
const signed = api.sealXRay(repoPath || process.cwd(), report);
|
|
46
|
+
out(JSON.stringify(signed, null, 2));
|
|
47
|
+
}
|
|
48
|
+
catch {
|
|
49
|
+
out(JSON.stringify(report, null, 2));
|
|
50
|
+
}
|
|
51
|
+
return;
|
|
52
|
+
}
|
|
53
|
+
const s = report.summary;
|
|
54
|
+
out("");
|
|
55
|
+
out(`🩻 X-RAY · ${report.subject.repoName}${report.subject.branch ? ` @ ${report.subject.branch}` : ""} [ ${s.grade} ]`);
|
|
56
|
+
out(` ${s.headline} · ${s.signalsRun} deterministic signals · @ ${String(report.subject.commitHash).slice(0, 10)}`);
|
|
57
|
+
for (const b of s.bullets.slice(0, 6))
|
|
58
|
+
out(` • ${b}`);
|
|
59
|
+
const mo = api.buildMomentum(report);
|
|
60
|
+
if (mo.verdict !== "unknown")
|
|
61
|
+
out(`\n📈 Momentum: ${mo.verdict} — ${mo.note}`);
|
|
62
|
+
const ks = api.buildKeystones(report, 3).keystones;
|
|
63
|
+
if (ks.length) {
|
|
64
|
+
out(`\n🔑 Keystone risk (single point of catastrophe):`);
|
|
65
|
+
for (const k of ks)
|
|
66
|
+
out(` ${base(k.file)} — ripples to ${k.partners} file(s), ${Math.round(k.ownerPct * 100)}% one author${k.expert ? ` · ask ${k.expert}` : ""}`);
|
|
67
|
+
}
|
|
68
|
+
const plan = api.buildActionPlan(report, 8).items;
|
|
69
|
+
if (plan.length) {
|
|
70
|
+
out(`\n✅ Action plan (ranked, each traceable):`);
|
|
71
|
+
for (const it of plan)
|
|
72
|
+
out(` [${it.sev.toUpperCase()}] ${it.icon} ${it.title} (${it.source})`);
|
|
73
|
+
}
|
|
74
|
+
const onb = api.buildOnboarding(report, 6).steps;
|
|
75
|
+
if (onb.length) {
|
|
76
|
+
out(`\n📖 Onboarding — read in this order:`);
|
|
77
|
+
onb.forEach((st, i) => out(` ${i + 1}. ${base(st.file)} — ${st.why}`));
|
|
78
|
+
}
|
|
79
|
+
out(`\n🔒 deterministic · Ed25519-signable · fingerprint ${String(report.fingerprint).slice(0, 16)}…`);
|
|
80
|
+
out(` full signed report: mneme xray${target ? ` ${target}` : ""} --json`);
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
//# sourceMappingURL=xray.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"xray.js","sourceRoot":"","sources":["../../src/commands/xray.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":"AAkLA,wBAAsB,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAklNvD"}
|
package/dist/index.js
CHANGED
|
@@ -95,8 +95,10 @@ import { registerSteleCommands } from "./commands/stele.js";
|
|
|
95
95
|
import { registerMembraneCommands } from "./commands/membrane.js";
|
|
96
96
|
import { registerTrustlessCommands } from "./commands/trustless.js";
|
|
97
97
|
import { registerMatrixCommands } from "./commands/matrix.js";
|
|
98
|
+
import { registerXrayCommands } from "./commands/xray.js";
|
|
98
99
|
import { registerAdamasCommands } from "./commands/adamas.js";
|
|
99
100
|
import { registerPrismCommands } from "./commands/prism.js";
|
|
101
|
+
import { registerGoldilocksCommands } from "./commands/goldilocks.js";
|
|
100
102
|
import { registerAxiaCommands } from "./commands/axia.js";
|
|
101
103
|
import { registerPceCommands } from "./commands/pce.js";
|
|
102
104
|
import { registerHauntCommands } from "./commands/haunt.js";
|
|
@@ -4756,8 +4758,10 @@ export async function run(argv) {
|
|
|
4756
4758
|
registerMembraneCommands(program);
|
|
4757
4759
|
registerTrustlessCommands(program);
|
|
4758
4760
|
registerMatrixCommands(program);
|
|
4761
|
+
registerXrayCommands(program);
|
|
4759
4762
|
registerAdamasCommands(program);
|
|
4760
4763
|
registerPrismCommands(program);
|
|
4764
|
+
registerGoldilocksCommands(program);
|
|
4761
4765
|
registerAxiaCommands(program);
|
|
4762
4766
|
registerPceCommands(program);
|
|
4763
4767
|
registerHauntCommands(program);
|