Continue Codex Work
Rebuild only the actionable context from a prior Codex CLI session's local rollout files and finish the interrupted work — no `codex resume` needed.
Dev & CodingIntermediate★ 1,323⑂ 212AI score 8/10Last updated: Aug 8, 2026
What it does
- Parses
~/.codex/sessions/YYYY/MM/DD/rollout-*.jsonlwith a bundled script and produces a structured briefing: session info, compact summary, recent user/assistant turns, tool calls, files edited, errors, and current git state. - Avoids
codex resume, which replays the whole rollout and burns the context window on resolved turns; instead it selectively reconstructs what still matters. - Auto-classifies the session end reason (clean exit / in progress / interrupted / abandoned / error cascade) and gives a resume strategy for each.
- Adds guardrails: verify that prior patches actually landed, check the branch, then run tests before reporting.
Who it's for
- Developers using OpenAI Codex CLI whose runs get cut off mid-task
- Anyone resuming long sessions without wasting context
- People switching between Claude Code and Codex (see the sibling skill
continue-claude-work)
Examples
- "Continue the Codex session
019f66..." → generates a briefing and picks up the unfinished turn - "What was Codex doing in this repo yesterday?" →
--listrecent sessions and summarize - "Find the Codex run where I built the skill migrator and continue it" →
--query "skill migrator"
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/daymade/claude-code-skills/HEAD/daymade-claude-code/continue-codex-work/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the daymade-claude-code/continue-codex-work folder from the GitHub repo daymade/claude-code-skills into my ~/.claude/skills/continue-codex-work/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/daymade/claude-code-skills.git && mkdir -p ~/.claude/skills && cp -r claude-code-skills/daymade-claude-code/continue-codex-work ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/daymade/claude-code-skills.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r claude-code-skills/daymade-claude-code/continue-codex-work ~/.claude/skills/ - Confirm
~/.claude/skills/continue-codex-work/scripts/containsextract_codex_resume.pyand the_core/folder. - Verify Python 3 is available:
python3 --version. - Restart Claude Code and ask something like "continue my last Codex session" to trigger the skill.
View source on GitHub ↗License: MIT