Files
openhuman/scripts/agent-batch/overlap.mjs
T
2026-06-01 17:16:50 -07:00

58 lines
1.4 KiB
JavaScript
Executable File

#!/usr/bin/env node
// Prove ownership disjointness in a batch spec.
// Usage: node scripts/agent-batch/overlap.mjs <spec.json>
// Exits 0 if all agents own disjoint path prefixes, 1 on any collision.
import {
loadSpec,
validateSpec,
findOverlaps,
SpecError,
parseArgs,
} from "./lib.mjs";
function usage() {
return "usage: overlap.mjs <spec.json>";
}
function main() {
const { positional, flags } = parseArgs(process.argv.slice(2));
if (flags.help || flags.h || flags["?"]) {
process.stdout.write(`${usage()}\n`);
process.exit(0);
}
const specPath = positional[0];
if (!specPath) {
process.stderr.write(`${usage()}\n`);
process.exit(2);
}
let spec;
try {
spec = validateSpec(loadSpec(specPath));
} catch (e) {
if (e instanceof SpecError) {
process.stderr.write(`[agent-batch] spec error: ${e.message}\n`);
process.exit(1);
}
throw e;
}
const collisions = findOverlaps(spec);
if (collisions.length === 0) {
process.stdout.write(
`[agent-batch] ok: ${spec.agents.length} agent(s) own disjoint paths\n`,
);
process.exit(0);
}
process.stderr.write(
`[agent-batch] ${collisions.length} ownership collision(s):\n`,
);
for (const c of collisions) {
process.stderr.write(
` ${c.a}${c.b}: "${c.pathA}" vs "${c.pathB}" (${c.reason})\n`,
);
}
process.exit(1);
}
main();