mirror of
https://github.com/affaan-m/ECC.git
synced 2026-09-18 15:50:25 +02:00
Independent local Codex review PASS at 472cfa94fb, no P0/P1. Independent retrospective, CLI, envelope and capsule tests: 73 passed. CI run 34664487219 attempt 2 passed all 42 jobs. Read-only offline capsule grouping only; no provenance, scoring, execution or promotion claim. Rollback: revert this squash commit.
25 lines
832 B
JavaScript
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'),
|
|
};
|