Load saved context, feature files, git state, and pipeline status. Use this at the start of a session to pick up where you left off.
Gathers all available context about work in progress and presents a clear "here's where you left off" summary so you can continue without losing momentum.
.claude/context/active-work.md (auto-saved by session-save hook).claude/context/session-summary.md (generated by session-end hook).claude/context/agent-activity.log (recent file changes and task completions).claude/context/features/ with status in-progress.agent-pipeline/pipeline.json if an agent pipeline was running.agent-eval-results/ if anyRead the saved session context:
cat .claude/context/active-work.md
cat .claude/context/session-summary.md
tail -30 .claude/context/agent-activity.log
From these files, note:
Read all files in .claude/context/features/. For each file:
# heading)in-progress, testing, or review, list the remaining unchecked tasksRun these commands to understand the current code state:
git branch --show-current
git status --short
git log --oneline -5
Note:
If .agent-pipeline/pipeline.json exists:
cat .agent-pipeline/pipeline.json
Report which stages completed, which failed, and which are pending.
Look for the most recent eval report:
ls -t .agent-eval-results/*.md 2>/dev/null | head -1
If found, read it and report the overall score and any NEEDS_FIXES items.
Present the findings as a structured summary:
## Session Recap
### Last Session
- **Ended:** <timestamp from session-summary.md>
- **Branch:** <branch name>
- **Files edited:** <count>
- **Tasks completed:** <count>
### Recent Activity
<last 5-10 entries from agent-activity.log>
### In-Progress Features
1. **<Feature Title>** — <status>
- Remaining: <count> tasks
- Next task: <first unchecked item>
### Current Code State
- **Branch:** `<branch>`
- **Uncommitted changes:** <count> files modified
- **Recent commits:** <1-line summary of last 2-3 commits>
### Pipeline Status
- <stage>: <status> (or "No active pipeline")
### Suggested Next Steps
1. <most logical next action based on context>
2. <second action>
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer