This skill provides TypeScript Language Server Protocol integration for exploring and understanding TypeScript/JavaScript codebases.
IMPORTANT: Prefer LSP tools over Grep/Glob when working with .ts, .tsx, .js, .jsx files. LSP provides type-aware results that understand imports, exports, and symbol relationships.
| Glob | Find files by pattern | | Grep | Search text content | | lsp-find | Search TypeScript symbols | | lsp-hover | Get type info + TSDoc documentation | | lsp-refs | Find all references to a symbol | | lsp-analyze | Batch analysis of file structure |
Search TypeScript SYMBOLS (functions, types, classes) - NOT text. Use Glob to find files, Grep for text search, LSP for symbol search. Provides type-aware results that understand imports, exports, and relationships. Source: plaited/agent-eval-harness.