
from dotfiles104
Use MCP-connected IDE language server to run diagnostics, perform scope-aware renames, find references, and auto-apply fixes like organize imports and format do
This skill teaches an agent to prefer IDE-backed MCP tools for code maintenance tasks. It uses language-server actions (diagnostics, rename, find references, execute editor commands) to surface errors, run auto-fixes (fixAll, organizeImports, formatDocument), and perform safe, project-aware renames across the codebase.
Use this skill when TypeScript or linting errors appear, when a rename or refactor must respect scope and avoid shadowed locals, or when IDE tooling is more accurate than CLI heuristics. Run getDiagnostics first, apply editor.action.fixAll where possible, then address remaining issues file-by-file.
getDiagnostics, rename_symbol, get_references, and execute_command (editor actions).Agents that can call MCP IDE language-server tools (agents exposing mcp__ide__* tooling), plus standard Edit/Read/Write capable agents.
This skill has not been reviewed by our automated audit pipeline yet.