From breadcrumbs
Restore full context after compaction or starting a new session. Reads recovery files, syncs beads state, verifies git state, and presents summary with available work.
How this skill is triggered — by the user, by Claude, or both
Slash command
/breadcrumbs:restore-contextThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are returning after compaction or time away. Follow this process to restore COMPLETE context.
You are returning after compaction or time away. Follow this process to restore COMPLETE context.
if [ -f .beads/recovery-prompt.md ]; then
cat .beads/recovery-prompt.md
echo ""
echo "--- Recovery prompt found. Reading full context next... ---"
else
echo "No recovery prompt found. Will read recovery context directly."
fi
cat .beads/recovery-context.md 2>/dev/null || cat recovery-context.md 2>/dev/null || echo "No recovery file found"
Absorb:
bd sync --from-main 2>/dev/null || true
bd ready
bd list --status open
If beads is not available, skip this step.
git status
git log --oneline -5
git branch --show-current
If not in a git repo, skip this step.
Show the user:
## Context Restored
### Current Epic
**[Epic name]**
- Goal: [brief description]
- Success: [1-2 key criteria]
### Last Session Completed
- [Major accomplishment 1]
- [Major accomplishment 2]
### Available Work (bd ready)
1. **[task-id]** - [Title] (P[priority])
2. **[task-id]** - [Title] (P[priority])
### Git State
- Branch: [branch]
- Uncommitted: [X files or clean]
### Scope Reminder
Focus on: [primary goal]
Avoid: [main scope creep risk]
---
**Which task would you like to work on?**
WAIT for user response before starting work.
Fallback process:
bd list to see all worknpx claudepluginhub aesirsystems/claude-marketplace --plugin breadcrumbsRecovers session context after compaction by scanning RPI state, evolve cycles, git history, work queue, and knowledge artifacts. Provides a dashboard of prior activity and next steps.
Restores session context from a previous Claude Code session after context resets, compaction, or new conversations. Checks for handoff files and project state to resume work.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.