Capture M16 gap execution artifacts
Some checks failed
M6 deployable RC / quick (push) Has been cancelled
M6 deployable RC / chromium (push) Has been cancelled
M6 deployable RC / release (push) Has been cancelled

This commit is contained in:
mes123456
2026-08-21 21:09:40 -04:00
parent e8ce4f5d0c
commit 46c9ebfcb6
339 changed files with 20028 additions and 108 deletions

View File

@@ -56,3 +56,10 @@ test("governance reports a serialized context envelope that exceeds its reserved
const result = validateContextBundle(oversized);
assert.ok(result.violations.some(({ code }) => code === "CONTEXT_ENVELOPE_OVER_BUDGET"));
});
test("explicit task handoff remains auditable after the queue advances", () => {
const bundle = buildTaskContext("M16-GAP-00145");
const result = validateContextBundle(bundle, { current: false });
assert.deepEqual(result.violations, []);
assert.equal(bundle.context.nextTask, "M16-GAP-00146");
});