What problem does it solve? When Copilot CLI sessions are interrupted by terminal crashes, network drops, or machine restarts, work is left in a partially-completed state with uncommitted branches, stale in-progress issues, and unfinished checkpoints. This Skill teaches agents how to query the session_store SQLite database to find those interrupted sessions and resume the work. ## Core Features & Use Cases - Session Discovery: Query recent sessions with their last checkpoint, filter out automated keep-alive and heartbeat sessions, and search by topic using the FTS5 search_index table. - Context Inspection: Retrieve conversation turns, checkpoint progress, touched files, and linked PRs/issues for a session before resuming it. - Orphaned Work Detection: Cross-reference sessions linked to issues with gh issue list --label "status:in-progress" to find abandoned work. - Use Case: After a laptop crash during PR creation, query sessions by branch name, check the last checkpoint to see whether the code was committed and the PR created, then resume with copilot --resume SESSION_ID. ## Quick Start Find my Copilot CLI sessions from the last 24 hours that were interrupted and show me where each one stopped so I can resume the unfinished work.