Files
ECC/scripts/lib/eval-harness/index.js
T
Affaan Mustafa 472cfa94fb feat: group verified capsules into offline retrospective reports
Add deterministic grouping for explicitly selected capsules from one task family. Deduplicate identical snapshots and reject conflicting identities without changing input files or exposing payloads and raw IDs. Keep execution and promotion disabled.

Validation: 16 library and 12 CLI checks, scoped scanners, independent code and security review.
2026-09-11 21:19:19 -04:00

25 lines
832 B
JavaScript

'use strict';
/**
* ECC eval-harness frameworks.
*
* envelope capsule-envelope/v1 contract, redaction, secret canaries
* capsule append-only hash-linked journal with five lineages
* retrospective offline report-only grouping of selected capsule snapshots
* gate static inspection and disabled execution gate, syntactic warnings
* replay declared tool effects, fixtures, fail-closed replay, retired effect preload
* receipt offline-verifiable capsule receipts
*
* See docs/architecture/eval-harness-frameworks.md and examples/eval-harness.
*/
module.exports = {
canonical: require('./canonical'),
envelope: require('./envelope'),
capsule: require('./capsule'),
retrospective: require('./retrospective'),
gate: require('./gate'),
replay: require('./replay'),
receipt: require('./receipt'),
};