feat(cli): structured write-action audit log#165
Merged
Conversation
Add cli.AuditRecord + cli.WriteAudit: every dispatched write action gets a logfmt line on stderr (always on, independent of --verbose) with RFC3339 timestamp, resolved login, KAS action, target, outcome (success | failure:<kas_code> | failure via api.AsError) and correlating fields. New global --audit-log flag (and KAS_AUDIT_LOG; flag wins) appends each record as JSON Lines to a 0600 file. Secret parameters are stripped by cli.RedactParams (explicit key set + password/token/secret/auth_data substring rule) in both sinks. Safety doc and docs/cli regenerated. No command emits a record yet: no #13 write endpoint exists and sessions delete is a session logout, not an audited write. That acceptance box transfers to the first write-command PR. Refs #131.
This was referenced May 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds
cli.AuditRecord+cli.WriteAudit: every dispatched write action emits alogfmtline on stderr (always on, independent of--verbose) with timestamp, resolved login, KAS action, target,outcome(success/failure:<kas_code>/failure) and correlating fields. New global--audit-logflag (andKAS_AUDIT_LOG; flag wins) appends each record as JSON Lines to a0600file. Secrets stripped bycli.RedactParamsin both sinks. Safety doc +docs/cliregenerated.No command emits a record yet (no #13 write endpoint exists;
sessions deleteis a session logout, not an audited write) — that acceptance box transfers to the first write-command PR.Refs #131.