@loopyc/verify
v0.1.0
Published
Dry-run verification (bounded-under-caps + replay-determinism) and scorecard grading for LoopSpecs, plus a codegen-free spec interpreter.
Maintainers
Readme
@loopyc/verify
Verify-before-you-run for Monkey D Loopy loops.
A codegen-free interpreter dry-runs a LoopSpec through the real @loopyc/runtime with mocked
effects — no network, no shell, no model calls — and proves it is bounded,
deterministic (two fresh runs converge), and resume-stable (a process restart between
every iteration changes nothing). Then a 0–100 scorecard grades termination safety
(including grounding — whether real evidence or the agent's own report decides when the loop
stops), caps, observability, resumability, and determinism.
import { verifyLoop, scoreLoop } from "@loopyc/verify";
const report = await verifyLoop(spec, capsInjected);
const card = scoreLoop(spec, report); // { total: 96, grade: "A", dimensions: [...] }Most users want the CLI instead: npm i -g @loopyc/cli → loopc verify · loopc score.
