What problem does it solve? After making code changes, developers need to quickly detect syntax errors, type errors, and import issues, and sometimes need a safe way to revert changes that broke the project. This Skill provides direct access to language server diagnostics and a guided rollback suggestion flow. ## Core Features & Use Cases - LSP Diagnostics Retrieval: Check syntax errors, type errors, and import issues for a specific file or across all files with errors. - Rollback Suggestion: Surface a "View Checkpoints" prompt when the user wants to undo changes, restore a previous version, or start over. - Use Case: After refactoring a large module, call getLatestLspDiagnostics on the edited file to list every error with line numbers, fix them one by one, and if the changes are unrecoverable, suggest a rollback so the user can restore a working checkpoint. ## Quick Start Check the file I just edited for any LSP errors and list them with line numbers.