Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计通过

using-typescript-lspusing TypeScript LSP 搜索

Agent Skill

using-typescript-lsp 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,162

周安装

47

GitHub Stars

2

下载量

365
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:using-typescript-lsp(using TypeScript LSP 搜索)
来源仓库:https://github.com/mhagrelius/dotfiles
仓库路径:skills/using-typescript-lsp
安装命令:
npx skills add https://github.com/mhagrelius/dotfiles --skill using-typescript-lsp
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/mhagrelius/dotfiles --skill using-typescript-lsp

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 安装前需确认权限范围和维护状态,避免不必要的联网或文件操作。
  • using-typescript-lsp 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Using TypeScript LSP

Overview

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.

When to Use LSP vs Text Search

digraph lsp_decision {
    "Need code info?" [shape=diamond];
    "Semantic accuracy needed?" [shape=diamond];
    "Use LSP tool" [shape=box];
    "Use Grep/Read" [shape=box];

    "Need code info?" -> "Semantic accuracy needed?" [label="yes"];
    "Need code info?" -> "Use Grep/Read" [label="no - text patterns"];
    "Semantic accuracy needed?" -> "Use LSP tool" [label="yes"];
    "Semantic accuracy needed?" -> "Use Grep/Read" [label="no"];
}

Use LSP for:

  • Finding all usages before refactoring
  • Getting type information (inferred or explicit)
  • Navigating to definitions (including node_modules)
  • Checking for type errors
  • Understanding interface implementations

Use Grep for:

  • Text patterns (comments, strings, config files)
  • Cross-language searches
  • JSON, YAML, markdown content
  • When LSP unavailable

LSP Operations Quick Reference

TaskLSP OperationInstead of
Find all callers of a functionfindReferencesGrep for function name
Get function/variable typehoverRead file + parse
Jump to definitiongoToDefinitionGrep + Read
Check type errorsgetDiagnosticsRun tsc CLI
View file structuredocumentSymbolRead entire file

Key Patterns

Before Refactoring: Find All References

Wrong approach:

Grep for "formatDuration" -> may miss renamed imports, get false positives from comments

Right approach:

LSP findReferences on symbol -> gets ALL semantic usages, no false positives

Getting Type Information

Wrong approach:

Read file -> find function -> manually trace type inference

Right approach:

LSP hover on symbol -> instant type signature with inferred types resolved

Verifying Type Correctness

Wrong approach:

Bash: npx tsc --noEmit (slow, external process)

Right approach:

LSP getDiagnostics on changed files -> instant, no subprocess

Finding Interface Implementations

Wrong approach:

Grep for "implements InterfaceName" -> misses duck-typed objects

Right approach:

LSP findReferences on interface -> finds all implementations including structural matches

Common Mistakes

MistakeWhy It's WrongFix
Grep for symbol before renameText search misses aliased imports, re-exportsUse findReferences
Read entire file for one typeWastes context, slowUse hover
Run tsc after every changeSlow, external toolUse getDiagnostics
Grep to find definitionMay find wrong match (same name, different module)Use goToDefinition
Grep for interface usagesMisses structural/duck typingUse findReferences

How LSP Tools Work

LSP is a built-in Claude Code tool, not a bash command. When typescript-lsp plugin is enabled, Claude Code automatically provides these operations:

  • goToDefinition - navigate to where symbol is defined
  • findReferences - find all usages of a symbol
  • hover - get type signature and documentation
  • getDiagnostics - get type errors for a file
  • documentSymbol - list all symbols in a file

You invoke these through Claude's tool system, not via bash. If LSP is unavailable, fall back to grep/read but document the limitation.

Supported File Types

.ts, .tsx, .js, .jsx, .mts, .cts, .mjs, .cjs

Prerequisites

  1. Plugin enabled: typescript-lsp@claude-plugins-official in ~/.claude/settings.json
  2. Language server installed: npm install -g typescript-language-server typescript
  3. Project configured: tsconfig.json or jsconfig.json present (recommended for accuracy)

Checking LSP Availability

Always try LSP first. If the LSP tools aren't available, they'll return an error. Don't preemptively fall back to grep just because you're unsure.

1. Attempt LSP operation (e.g., findReferences)
2. If tool error → fall back to grep/read with documented limitation
3. If success → use the semantic results

Fallback Strategy

If LSP is unavailable (tool not found, server not running):

  1. Document the limitation - explicitly state: "LSP unavailable, using text search as fallback"
  2. Use Grep with caution - understand it may miss aliased imports or re-exports
  3. Verify manually - for refactoring, double-check results make sense semantically
  4. Suggest fix - remind user to ensure typescript-language-server is installed and plugin enabled

Never silently fall back. Always tell the user when you're using text search instead of LSP so they understand the limitations.

Red Flags - Stop and Use LSP

These thoughts mean you should use LSP, not grep:

ThoughtReality
"Let me grep for this function"If it's a symbol, use findReferences
"I'll read the file to find the type"Use hover for instant type info
"Let me run tsc to check"Use getDiagnostics - faster, no subprocess
"I'll search for where this is defined"Use goToDefinition - semantic accuracy
"Grep is faster for quick searches"LSP is faster for semantic queries
"I need to find all implementations"Use findReferences - catches structural matches

When LSP Won't Help

  • No typescript-language-server binary installed
  • Working with pure JavaScript without jsconfig.json (limited type inference)
  • Cross-language references (e.g., TypeScript calling Rust via WASM)
  • Comment/string literal searches
  • Config files (JSON, YAML, etc.)
  • Node modules not installed (npm install needed first)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

30.9%
按下载量换算113

OpenCode

23.35%
按下载量换算85

Antigravity

17.7%
按下载量换算65

Gemini CLI

14.12%
按下载量换算52

Codex

9.11%
按下载量换算33

trae

3.34%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/mhagrelius/dotfiles --skill using-typescript-lsp;npx skills add mhagrelius/dotfiles --skill "using-typescript-lsp" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills