← ClaudeAtlas

soleri-context-resumelisted

Triggers: "where did I leave off", "what was I working on", "catch me up", "resume session", "continue where we stopped". Reconstructs working context from memory, plans, sessions.
adrozdenko/soleri · ★ 6 · AI & Automation · score 74
Install: claude install-skill adrozdenko/soleri
# Context Resume — Pick Up Where You Left Off Reconstruct full working context in seconds. Chains memory, plans, sessions, and brain to rebuild exactly where you left off — even across session boundaries and context compactions. ## Steps ### 1. Load Active Plans ``` YOUR_AGENT_core op:plan_stats YOUR_AGENT_core op:get_plan YOUR_AGENT_core op:plan_list_tasks params: { planId: "<id>" } ``` Present: plan objective, task status (completed/in-progress/pending), what's next. ### 2. Search Recent Memory ``` YOUR_AGENT_core op:memory_search params: { query: "session summary" } YOUR_AGENT_core op:memory_list YOUR_AGENT_core op:vault_recent ``` ### 3. Check Active Loops ``` YOUR_AGENT_core op:loop_is_active YOUR_AGENT_core op:loop_status ``` ### 4. Brain Snapshot ``` YOUR_AGENT_core op:brain_strengths ``` ### 5. System Health ``` YOUR_AGENT_core op:admin_health ``` ## Presenting the Resume ``` ## Where You Left Off **Active Plans:** - [Plan name] — X/Y tasks complete, next: [task] **Last Session:** - [Summary — what was done, key decisions] **Recent Captures:** - [New patterns/anti-patterns added] **Active Loops:** - [Any in-progress validation loops] **Brain Says:** - [Top relevant patterns] **Health:** [OK / Issues] ## Recommended Next Step [Based on active plans and last session context] ``` ## Common Mistakes - Not checking for active loops (missing mid-flight TDD or debug cycles) - Skipping the health check (stale caches can cause confusing behavior) -