Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

lsp-integrationLSP 集成

Agent Skill

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

总安装

303

周安装

13

GitHub Stars

13

下载量

106
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/sjnims/plugin-dev --skill lsp-integration

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 当前暂无底部简介内容,可参考来源仓库获取更多使用细节。

SKILL.md

LSP Integration for Claude Code Plugins

Overview

Language Server Protocol (LSP) servers provide code intelligence features like go-to-definition, find references, and hover information. Claude Code plugins can bundle or configure LSP servers to enhance Claude's understanding of code.

Key capabilities:

  • Enable go-to-definition for code navigation
  • Find all references to symbols
  • Get hover information and documentation
  • Support language-specific features (completions, diagnostics)

LSP Server Configuration

Plugins can provide LSP servers in the plugin manifest:

Basic Configuration

{
  "name": "my-plugin",
  "lspServers": {
    "python": {
      "command": "pyright-langserver",
      "args": ["--stdio"],
      "extensionToLanguage": {
        ".py": "python",
        ".pyi": "python"
      }
    }
  }
}

Separate File Configuration

LSP servers can also be configured in a separate .lsp.json file at the plugin root:

{
  "go": {
    "command": "gopls",
    "args": ["serve"],
    "extensionToLanguage": {
      ".go": "go"
    }
  }
}

Reference this file in plugin.json:

{
  "name": "my-plugin",
  "lspServers": "./.lsp.json"
}

Configuration Fields

command (required): The LSP server executable

args (optional): Command-line arguments for the server

extensionToLanguage (required): Maps file extensions to language IDs

{
  "extensionToLanguage": {
    ".py": "python",
    ".pyi": "python",
    ".pyw": "python"
  }
}

env (optional): Environment variables for the server process

{
  "env": {
    "PYTHONPATH": "${CLAUDE_PLUGIN_ROOT}/lib"
  }
}

transport (optional): Communication transport - stdio (default) or socket

{
  "lspServers": {
    "dart": {
      "transport": "socket",
      "command": "dart",
      "args": ["language-server", "--port", "8123"],
      "extensionToLanguage": { ".dart": "dart" }
    }
  }
}

Socket transport connects to the server via TCP port instead of stdin/stdout.

initializationOptions (optional): Options passed to the server during LSP initialization

{
  "initializationOptions": {
    "typescript": {
      "tsdk": "./node_modules/typescript/lib"
    },
    "diagnostics": true,
    "formatting": { "tabSize": 2 }
  }
}

settings (optional): Settings passed via workspace/didChangeConfiguration

workspaceFolder (optional): Workspace folder path for the server

startupTimeout (optional): Maximum time to wait for server startup in milliseconds

shutdownTimeout (optional): Maximum time to wait for graceful shutdown in milliseconds

restartOnCrash (optional): Whether to automatically restart the server if it crashes

maxRestarts (optional): Maximum number of restart attempts before giving up

What Claude Gains from LSP

When an LSP plugin is installed and its language server binary is available, Claude gains two key capabilities:

Automatic Diagnostics

After every file edit Claude makes, the language server analyzes the changes and reports errors and warnings back automatically. Claude sees type errors, missing imports, and syntax issues without needing to run a compiler or linter. If Claude introduces an error, it notices and fixes the issue in the same turn.

Code Navigation

Claude can use the language server to:

  • Jump to definitions
  • Find all references to a symbol
  • Get type information on hover
  • List symbols in a file
  • Find implementations of interfaces
  • Trace call hierarchies

These operations give Claude more precise navigation than grep-based search.

Pre-built LSP Plugins

Claude Code provides official LSP plugins for common languages. Install from the marketplace:

LanguagePluginBinary Required
C/C++clangd-lspclangd
C#csharp-lspcsharp-ls
Gogopls-lspgopls
Javajdtls-lspjdtls
Kotlinkotlin-lspkotlin-language-server
Lualua-lsplua-language-server
PHPphp-lspintelephense
Pythonpyright-lsppyright-langserver
Rustrust-analyzer-lsprust-analyzer
Swiftswift-lspsourcekit-lsp
TypeScripttypescript-lsptypescript-language-server

Install the language server binary first, then install the plugin:

# Example: Python
pip install pyright  # or: npm install -g pyright
claude /install-plugin pyright-lsp

Troubleshooting: If you see Executable not found in $PATH in the /plugin Errors tab, install the required binary from the table above.

Creating Custom LSP Integration

Step 1: Choose or Build LSP Server

Options:

  1. Use existing LSP server - Most languages have official or community servers
  2. Bundle with plugin - Include server binary in plugin
  3. Require user installation - Document server installation in README

Step 2: Configure in plugin.json

{
  "name": "go-lsp",
  "version": "1.0.0",
  "description": "Go language server integration",
  "lspServers": {
    "go": {
      "command": "gopls",
      "args": ["serve"],
      "extensionToLanguage": {
        ".go": "go",
        ".mod": "go.mod"
      }
    }
  }
}

Step 3: Bundle Server (Optional)

For self-contained plugins, bundle the server:

my-lsp-plugin/
├── .claude-plugin/
│   └── plugin.json
└── servers/
    └── my-lsp-server

Use ${CLAUDE_PLUGIN_ROOT} for the command path:

{
  "lspServers": {
    "mylang": {
      "command": "${CLAUDE_PLUGIN_ROOT}/servers/my-lsp-server",
      "args": ["--stdio"]
    }
  }
}

Step 4: Document Requirements

In your plugin README:

  • List required external dependencies
  • Provide installation instructions
  • Note supported language versions
  • Describe available features

Extension to Language Mapping

The extensionToLanguage field maps file extensions to LSP language identifiers:

Common Mappings

{
  "extensionToLanguage": {
    ".py": "python",
    ".js": "javascript",
    ".ts": "typescript",
    ".jsx": "javascriptreact",
    ".tsx": "typescriptreact",
    ".rs": "rust",
    ".go": "go",
    ".java": "java",
    ".rb": "ruby",
    ".php": "php",
    ".c": "c",
    ".cpp": "cpp",
    ".h": "c",
    ".hpp": "cpp",
    ".cs": "csharp"
  }
}

Multiple Extensions

A single language can have multiple extensions:

{
  "extensionToLanguage": {
    ".ts": "typescript",
    ".mts": "typescript",
    ".cts": "typescript",
    ".d.ts": "typescript"
  }
}

LSP Server Lifecycle

Startup

LSP servers start automatically when:

  1. Claude Code session begins
  2. Plugin with LSP server is enabled
  3. User opens a file matching configured extensions

Communication

  • Uses stdio for client-server communication
  • Follows LSP specification for messages
  • Claude Code manages the connection

Shutdown

Servers terminate when:

  • Claude Code session ends
  • Plugin is disabled
  • Server crashes (auto-restart may occur)

Best Practices

Performance

  1. Lazy initialization - Servers start when needed, not at session start
  2. Minimal configuration - Only enable features you need
  3. Resource limits - Consider memory/CPU impact of servers

Compatibility

  1. Check LSP version - Ensure server supports required protocol version
  2. Test cross-platform - Verify on macOS, Linux, Windows
  3. Handle missing servers - Gracefully degrade if server not installed

Documentation

  1. List prerequisites - External tools, versions required
  2. Provide setup guide - Step-by-step installation
  3. Document features - Which LSP capabilities are supported

Troubleshooting

Server Not Starting

Check:

  • Command path is correct
  • Server is installed and executable
  • Required dependencies are available
  • ${CLAUDE_PLUGIN_ROOT} is used for bundled servers

No Code Intelligence

Check:

  • File extension matches extensionToLanguage mapping
  • Language ID is correct for the server
  • Server supports the requested feature

Debug Mode

Enable debug logging:

claude --debug

Look for:

  • LSP server startup messages
  • Communication logs
  • Error responses

Quick Reference

Minimal LSP Configuration

{
  "lspServers": {
    "language": {
      "command": "server-command",
      "extensionToLanguage": {
        ".ext": "language-id"
      }
    }
  }
}

Full LSP Configuration

{
  "lspServers": {
    "language": {
      "command": "${CLAUDE_PLUGIN_ROOT}/servers/lsp-server",
      "args": ["--stdio", "--log-level", "warn"],
      "extensionToLanguage": {
        ".ext1": "language",
        ".ext2": "language"
      },
      "env": {
        "CONFIG_PATH": "${CLAUDE_PLUGIN_ROOT}/config"
      },
      "transport": "stdio",
      "initializationOptions": {},
      "settings": {},
      "workspaceFolder": ".",
      "startupTimeout": 10000,
      "shutdownTimeout": 5000,
      "restartOnCrash": true,
      "maxRestarts": 3
    }
  }
}

Best Practices Summary

DO:

  • Use ${CLAUDE_PLUGIN_ROOT} for bundled server paths
  • Map all relevant file extensions
  • Document external dependencies
  • Test on multiple platforms
  • Handle server unavailability gracefully

DON'T:

  • Hardcode absolute paths
  • Assume servers are pre-installed
  • Bundle large binaries without consideration
  • Ignore server startup errors

Additional Resources

Reference Files

For detailed information, consult:

  • references/popular-lsp-servers.md - Curated list of LSP servers by language with installation commands
  • references/lsp-capabilities.md - LSP protocol capabilities and what they enable

Examples

  • examples/minimal-lsp-plugin/ - Complete directory structure for a minimal LSP plugin
  • examples/lsp-json-configs.md - Various .lsp.json configuration patterns

External Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.72%
按下载量换算34

Claude

31.53%
按下载量换算33

Cursor

19.46%
按下载量换算21

Gemini CLI

8.51%
按下载量换算9

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills