using-typescript-lsp
✓Use when working with TypeScript or JavaScript code and typescript-lsp plugin is enabled - for finding references, checking types, navigating definitions, or verifying type correctness
Installation
SKILL.md
The typescript-lsp plugin provides semantic code intelligence for TypeScript and JavaScript. Use LSP tools instead of grep/read when you need semantic accuracy - LSP understands TypeScript's type system, inheritance, interfaces, and symbol relationships.
| Find all callers of a function | findReferences | Grep for function name | | Get function/variable type | hover | Read file + parse | | Jump to definition | goToDefinition | Grep + Read | | Check type errors | getDiagnostics | Run tsc CLI | | View file structure | documentSymbol | Read entire file |
| Grep for symbol before rename | Text search misses aliased imports, re-exports | Use findReferences | | Read entire file for one type | Wastes context, slow | Use hover | | Run tsc after every change | Slow, external tool | Use getDiagnostics | | Grep to find definition | May find wrong match (same name, different module) | Use goToDefinition |
Facts (cite-ready)
Stable fields and commands for AI/search citations.
- Install command
npx skills add https://github.com/mhagrelius/dotfiles --skill using-typescript-lsp- Source
- mhagrelius/dotfiles
- Category
- </>Dev Tools
- Verified
- ✓
- First Seen
- 2026-02-01
- Updated
- 2026-02-18
Quick answers
What is using-typescript-lsp?
Use when working with TypeScript or JavaScript code and typescript-lsp plugin is enabled - for finding references, checking types, navigating definitions, or verifying type correctness Source: mhagrelius/dotfiles.
How do I install using-typescript-lsp?
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/mhagrelius/dotfiles --skill using-typescript-lsp Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor
Where is the source repository?
https://github.com/mhagrelius/dotfiles
Details
- Category
- </>Dev Tools
- Source
- skills.sh
- First Seen
- 2026-02-01