Review Workflow

The review workflow is the heart of Ironclad.

Resolve

Capture the current state:

ic resolve

That writes .ironclad/snapshots/actual.json, the resolved snapshot.

Inspect

Get an overview:

ic inspect

Inspect one fact in detail:

ic inspect comet-board
ic inspect comet-board --trace

Diff

See which facts changed:

ic diff

See the detailed per-sample change records for one fact:

ic diff comet-board
ic diff comet-board --trace

Check

Use check when you want a clean success/failure exit status:

ic check

It prints either ok (0) or drift (N) and exits 0 or 1.

Apply

Approve one fact:

ic apply comet-board

Approve everything:

ic apply --all

That promotes entries from the resolved snapshot into the approved snapshot.