From sessionlog
Resumes coding sessions by loading compacted session files from docs/sessionlogs, displaying context, verifying git status/log for repo drift, and suggesting next steps.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sessionlog:continueThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Find and load a compacted session file to resume work from a previous session.
Find and load a compacted session file to resume work from a previous session.
ls -t docs/sessionlogs/*-compact.md 2>/dev/null
/sessionlog:compact first.Found multiple compact files:
1. claude-<id1>-compact.md (2025-01-15)
2. claude-<id2>-compact.md (2025-01-14)
3. claude-<id3>-compact.md (2025-01-13)
Which session do you want to continue? (number)
Read the selected -compact.md file in full.
Print the content to the user so they can see the restored context.
After presenting the context, follow the "Instructions for Continuation" section from the compact file:
git status and git log --oneline -5 to verify current stateThen ask the user what they'd like to work on — suggest the first item from "Work In Progress" or "Open Issues / Next Steps" as a starting point.
npx claudepluginhub florianbuetow/claude-code --plugin sessionlogRestores context from a previous session so you can pick up where you left off, reading transcripts directly with no LLM calls or token cost.
Reads a CONTINUE_HERE.md continuation file at session start and resumes from where a prior session left off, detecting freshness, parsing structured handoff, and cleaning up after consumption.
Retrieves previous Claude Code or Codex CLI session transcripts, printing recent turns and metadata to resume work. Supports UUID lookup and automatic detection of most recent session.