Regulated Reviewer Flow
Documented for Akmon 2.0.0.
Who this is for
Reviewers, tech leads, and compliance engineers validating AI-assisted code-change sessions.
What you will have at the end
- A single repeatable checklist from run output to verification-ready handoff.
Prerequisites
- A completed Akmon run with session ID.
- Access to repository artifacts (
.akmon/audit,.akmon/evidence).
Steps
- Capture the session ID from run output.
SESSION_ID="<session-uuid>"
- Verify audit chain and evidence artifact linkage.
akmon audit verify ".akmon/audit/${SESSION_ID}.jsonl"
akmon evidence verify ".akmon/evidence/${SESSION_ID}.json"
- Verify session integrity at journal level.
akmon verify "${SESSION_ID}"
- Replay for behavioral divergence checks when required.
akmon replay "${SESSION_ID}" --format json | tee replay.json
- Export portable bundle for external review or archive retention.
akmon bundle export "${SESSION_ID}" --output "${SESSION_ID}.akmon"
- If sensitive content must be removed, create derivative redacted bundle.
akmon redact "${SESSION_ID}" \
--output "${SESSION_ID}-sanitized.akmon" \
--object <object-hash> \
--reason "compliance redaction"
Verification
A handoff is review-ready when:
- all verification commands exit
0, - replay report is pass or divergences are explicitly accepted,
- exported bundle is present and, if redacted, passes
bundle import --verify-only.
Troubleshooting
- If
verifyfails, stop release review and inspect violation category before proceeding. - If
replaydiverges, treat as change-detection signal and triage expected vs unexpected drift. - If bundle import verify-only fails, do not distribute the bundle externally.