This commit is contained in:
Oleg Maslov
2026-09-02 10:14:22 +02:00
parent 0c3e2ead3b
commit b20b138fe4
771 changed files with 161561 additions and 9027 deletions

View File

@@ -102,3 +102,14 @@ describe('premium harness contract (R3 — verification before completion)', ()
expect(txt).toMatch(/Only distill from SUCCESSFUL work|Never distill a failed attempt/);
});
});
describe('external comparison evidence contract', () => {
it('batches independent primary-source fetches before synthesis', () => {
expect(BEHAVIORAL_SPEC.behavioralRules).toContain(
'batch the independent web_fetch calls in the next tool round',
);
expect(BEHAVIORAL_SPEC.behavioralRules).toContain(
'do not synthesize while a required source remains unfetched',
);
});
});