| "Where is this defined?" | definition | filePath, line, character |
| "Find all usages" | references | filePath, line, character |
| "What type is this?" | hover | filePath, line, character |
| "Show call signature here" | signatureHelp | filePath, line, character (at call-site args) |
| "What symbols in this file?" | documentSymbol | filePath |
| "Find symbol across project" | workspaceSymbol | query + filePath strongly recommended |
| "What quick fixes are available?" | codeAction | filePath, line, character, endLine, endCharacter |
| "Rename symbol safely" | rename | filePath, line, character, newName |
| "Who implements this interface?" | implementation | filePath, line, character |
| "Who calls this function?" | prepareCallHierarchy → incomingCalls | filePath, line, character |
| "What does this function call?" | prepareCallHierarchy → outgoingCalls | filePath, line, character |
| "Show tracked LSP diagnostics" | workspaceDiagnostics | optional filePath (snapshot, not full pull workspace) |