Continue Claude Work
Rebuilds only the actionable context from local `.claude` session files so you can resume interrupted work without `claude --resume`.
Dev & CodingIntermediate★ 1,323⑂ 212AI score 9/10Last updated: Aug 8, 2026
What it does
- Runs a bundled Python script over session JSONL files in
~/.claude/projectsto produce a briefing with the latest compact summary, recent user requests, errors, unresolved tool calls, subagent status, touched files, MEMORY.md and git state. - Unlike
claude --resume, which replays the whole transcript, it selectively reconstructs only what's needed — saving context tokens. - Classifies how the session ended (clean exit, interrupted, error cascade, abandoned) and prescribes a different continuation strategy for each.
- Includes guardrails: treat compact summaries as lossy and verify claims against the current workspace before editing.
Who it's for
- Developers whose long Claude Code sessions get cut off by ctrl-c, timeouts, or context limits.
- Anyone who wants a fresh session that still knows prior state, without the token cost of
--resume. - Teams running multi-subagent pipelines who need to know which agents finished and which need a retry.
Examples
- "Continue work from session
abc123" → extracts that session's briefing and implements the next concrete step. - "Don't resume, just read the .claude files and keep going" → auto-discovers the latest session and surfaces errors plus dangling tool calls.
- "Search my sessions for the PR review work" → uses
--query "PR review"to locate and rebuild that context.
· · · 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-claude-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-claude-work folder from the GitHub repo daymade/claude-code-skills into my ~/.claude/skills/continue-claude-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 /tmp/ccs && cp -r /tmp/ccs/daymade-claude-code/continue-claude-work ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Create the skills directory:
mkdir -p ~/.claude/skills - Clone the repo:
git clone https://github.com/daymade/claude-code-skills.git /tmp/ccs - Copy the skill:
cp -r /tmp/ccs/daymade-claude-code/continue-claude-work ~/.claude/skills/ - Verify
scripts/extract_resume_context.pyandreferences/file_structure.mdcame along. - Confirm Python 3 is available:
python3 --version - Restart Claude Code and try "continue what I was working on in my last session" to trigger the skill.
View source on GitHub ↗License: MIT