← ClaudeAtlas

session-recoverylisted

Find and resume interrupted Copilot CLI sessions using session_store queries
webmaxru/is-ai-native · ★ 5 · AI & Automation · score 74
Install: claude install-skill webmaxru/is-ai-native
## Context Squad agents run in Copilot CLI sessions that can be interrupted — terminal crashes, network drops, machine restarts, or accidental window closes. When this happens, in-progress work may be left in a partially-completed state: branches with uncommitted changes, issues marked in-progress with no active agent, or checkpoints that were never finalized. Copilot CLI stores session history in a SQLite database called `session_store` (read-only, accessed via the `sql` tool with `database: "session_store"`). This skill teaches agents how to query that store to detect interrupted sessions and resume work. ## Patterns ### 1. Find Recent Sessions Query the `sessions` table filtered by time window. Include the last checkpoint to understand where the session stopped: ```sql SELECT s.id, s.summary, s.cwd, s.branch, s.updated_at, (SELECT title FROM checkpoints WHERE session_id = s.id ORDER BY checkpoint_number DESC LIMIT 1) AS last_checkpoint FROM sessions s WHERE s.updated_at >= datetime('now', '-24 hours') ORDER BY s.updated_at DESC; ``` ### 2. Filter Out Automated Sessions Automated agents (monitors, keep-alive, heartbeat) create high-volume sessions that obscure human-initiated work. Exclude them: ```sql SELECT s.id, s.summary, s.cwd, s.updated_at, (SELECT title FROM checkpoints WHERE session_id = s.id ORDER BY checkpoint_number DESC LIMIT 1) AS last_checkpoint FROM sessions s WHERE s.updated_at >= datetime('now', '-24 hours') AND s.id NOT