← ClaudeAtlas

recoverylisted

Recover session state from memory-keeper after context loss.
aiskillstore/marketplace · ★ 329 · AI & Automation · score 79
Install: claude install-skill aiskillstore/marketplace
# Recovery Skill Restore session state from memory-keeper checkpoints after context is lost or when starting a new session. ## When to Use - Starting a new session on existing work - After context was exhausted - When asked "what was I working on?" - When asked to "recover" or "restore" context - After `/clear` or session restart ## Recovery Actions ### 1. Load Recent Context ``` context_get(limit: 50, sort: "created_desc") ``` ### 2. Get Context Summary ``` context_summarize() ``` ### 3. Find Progress Items ``` context_get(category: "progress", limit: 20) ``` ### 4. Find High Priority Items ``` context_get(priority: "high", limit: 10) ``` ### 5. Reconstruct State From the retrieved context, extract: - `current-task`: What was being worked on - `files-modified`: Files that were changed - `implementation-progress`: How far along - `next-action`: What needs to happen next - `blockers`: Any known issues ## Recovery Output Format Present the recovered state clearly: ```markdown ## Session Recovered ### Previous Task <current-task value> ### Progress <implementation-progress value> ### Files Modified <list of files-modified> ### Blockers/Issues <any blockers found> ### Recommended Next Action <next-action value> ### Recent Checkpoints 1. <checkpoint 1 name>: <description> 2. <checkpoint 2 name>: <description> --- Ready to continue. Confirm to proceed with: <next-action> ``` ## Recovery Checklist - [ ] Load all recent context items - [ ] Identify the curr