feat(tooling): RLM-backed digest of sibling agent (Codex) sessions#8730
Open
scarmani wants to merge 2 commits into
Open
feat(tooling): RLM-backed digest of sibling agent (Codex) sessions#8730scarmani wants to merge 2 commits into
scarmani wants to merge 2 commits into
Conversation
…dex sessions Cross-agent visibility: Codex writes full per-session transcripts to ~/.codex/sessions/**/rollout-*.jsonl (MBs each). This extracts the reviewable signal (prompts, decisions, exec commands, referenced PRs) deterministically and optionally runs it through Aragora's own RLM (aragora rlm compress+query) for a recursive summary — so reviewing what a sibling agent did is one command instead of hand-parsing JSONL or blowing context. Read-only; no creds required for the deterministic path. Supports --latest/--session/--path, --rlm, --json.
One-command cross-agent view: digests every Codex rollout in a time window (--since-hours) into a one-line-per-session summary (session id, command/decision counts, all PRs touched, last decision). Run before editing shared files to see what sibling agents are touching and avoid the two-agents-one-file collision. 5 tests; live-smoked.
Contributor
Aragora Code ReviewAdvisory-only review. No issues found. |
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.
Makes cross-agent visibility one command. Codex writes full per-session transcripts to
~/.codex/sessions/**/rollout-*.jsonl(MBs each); reading one wholesale blows a reviewer's context.scripts/agent_session_digest.pyextracts the reviewable signal (prompts, decisions, exec commands, referenced PRs) deterministically, and with--rlmruns it through Aragora's own RLM (aragora rlm compress+query) for a recursive summary.Read-only; deterministic path needs no creds.
--latest/--session <id>/--path/--json. 3 focused tests; live-smoked on a real rollout. Foundation for a single-coordinator cross-agent view to stop two agents editing the same core files.