What problem does it solve?
Local Codex CLI history is scattered across three different stores (history.jsonl prompt ledger, state_*.sqlite metadata, and rollout JSONL files), and naive reads can attribute one session's events to another, miss forked ancestry, or silently return partial results. This Skill reads Codex history as verified evidence without resuming or modifying any session.
Core Features & Use Cases
- Verbatim Input Extraction: Lists exact recent user inputs from the Codex prompt ledger, grouped by Session ID in newest-first order, preserving duplicates, wording, and timestamps.
- Session Evidence Briefings: Reconstructs one chronological user/assistant timeline per session, including fork lineage via exact byte-offset snapshots, compaction context, tool calls, files edited, and end reasons.
- Bounded Keyword Search: Searches full rollout events across live and archived sessions with date filters, project scoping, self-match exclusion, and a scan budget that fails visibly instead of returning incomplete results.
- Use Case: A user asks "what did I tell Codex yesterday about the auth refactor?" The Skill extracts the exact prompt-ledger rows, verifies the session identity against session_meta.id, and reconstructs the full conversation including any forked parent context.
Quick Start
Ask the assistant to list your recent Codex sessions or show what you told Codex in a specific session, and it will run the bundled read-only scripts to return verified history evidence.