Sealed CI · /v1/code-review

Code review sealed to the ledger.

One job: run an AI review over a changeset where every finding is sealed to the WORM ledger — a reproducible audit trail of exactly what was flagged, when.

Findings
Sealed
Each finding anchored — reproducible at audit.
Audit trail
Immutable
Who reviewed what, when — provable.
Severity
Classified
clean / low / med / high / critical.
Classical / legacy
  • Review comments lost in PR history
  • No proof a check ran
  • Findings editable after the fact
EpochCore primitive
  • Sealed findings on the ledger
  • Reproducible at audit time
  • Immutable review record
Run it

Try the primitive.

With an API key this calls the live POST /v1/code-review endpoint and returns the sealed response. Without one it shows a representative sealed payload so you can see the shape.

CodeReviewPOST /v1/code-review
Representative output runs locally · live needs a key

      
SDK

In Python.

from epochcore_app_primitives import Client
with Client(api_key="...") as c:
    r = c.code_review.review(repo_url="https://github.com/acme/api",
                              branch="main", files=files)
    print(c.code_review.findings(r["review_id"], severity="high"))