[codex] Add session-correlated audit for embedded runs - #140
Merged
Conversation
jamiesun
marked this pull request as ready for review
June 26, 2026 09:41
Merged
jamiesun
added a commit
that referenced
this pull request
Jun 26, 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.
Summary
Fixes #132.
session_id/run_idcontext to audit JSONL eventssession_idscoot.run()use a per-run scratch arena while keeping returned replies valid untilstop()Root Cause
Audit events were written as a global stream with only
seq,ts,kind, andmsg, so app-server style consumers could not slice audit history by session. The embedded API also did not attach an audit logger and reused the runtime arena for per-run session, skill, and agent scratch state.Validation
zig test src/audit.zigzig build test --summary all(517/517 tests passed)zig build && ./zig-out/bin/scoot --versionzig fmt --check,zig build,zig build test,zig build -Doptimize=ReleaseSafe, CLI smoke