← 返回 Skills 市场
adamnaghs

LSP Code Navigation

作者 AdamNaghs · GitHub ↗ · v2.0.0
cross-platform ⚠ suspicious
490
总下载
0
收藏
1
当前安装
6
版本数
在 OpenClaw 中安装
/install lsp
功能描述
Multi-language code navigation via persistent LSP daemons. Supports Python (pyright), TypeScript/JS, Rust, Go, C/C++, Bash, Java, CSS, HTML, JSON. Auto-detec...
使用说明 (SKILL.md)

LSP Code Navigation

Multi-language LSP client that manages per-language background daemons. Auto-detects the language from file extension and routes queries to the correct server. Each server lazy-starts on first use and idles out after 5 minutes of inactivity.

Use this instead of grep/read when you need to:

  • Find where something is defined
  • Find all usages of a symbol
  • Get type signatures or docstrings
  • List all classes/functions in a file
  • Check for type errors before running code
  • Search for a symbol across an entire workspace

Supported Languages

Language Server Extensions Install
Python pyright-langserver .py, .pyi, .pyx npm install -g pyright
TypeScript/JS typescript-language-server .ts, .tsx, .js, .jsx, .mjs, .cjs npm install -g typescript-language-server typescript
Rust rust-analyzer .rs rustup component add rust-analyzer
Go gopls .go go install golang.org/x/tools/gopls@latest
C/C++ clangd .c, .h, .cpp, .cc, .hpp apt install clangd or brew install llvm
Bash bash-language-server .sh, .bash, .zsh npm install -g bash-language-server
Java jdtls .java eclipse.jdt.ls
CSS vscode-css-language-server .css, .scss, .less npm install -g vscode-langservers-extracted
HTML vscode-html-language-server .html, .htm npm install -g vscode-langservers-extracted
JSON vscode-json-language-server .json, .jsonc npm install -g vscode-langservers-extracted

Only install the servers you need. The skill auto-detects which are available and reports helpful install commands for missing ones.

Setup

Prerequisites

  • Python 3.10+ (for the client script itself -- stdlib only, no pip deps)
  • At least one language server installed (see table above)

Installation

The skill includes a Python script at {baseDir}/scripts/lsp-query.py. This is the LSP client -- it manages background daemons and handles all queries.

To make it callable as lsp-query from anywhere, symlink it into your PATH:

ln -sf {baseDir}/scripts/lsp-query.py /usr/local/bin/lsp-query
# or:
ln -sf {baseDir}/scripts/lsp-query.py ~/.npm-global/bin/lsp-query

Alternatively, invoke it directly:

{baseDir}/scripts/lsp-query.py \x3Ccommand> [args...]

Configuration

Set LSP_WORKSPACE to the repo root before querying. If unset, defaults to the git root or cwd.

Commands

All line and column numbers are 1-indexed (human-friendly, matching editor display).

Go to Definition

lsp-query definition /path/to/file.py \x3Cline> \x3Ccol>

Find References

lsp-query references /path/to/file.py \x3Cline> \x3Ccol>

Hover (Type Info)

lsp-query hover /path/to/file.py \x3Cline> \x3Ccol>

Document Symbols

lsp-query symbols /path/to/file.py

Workspace Symbol Search

lsp-query workspace-symbols "ClassName"

Diagnostics

lsp-query diagnostics /path/to/file.py

Completions

lsp-query completions /path/to/file.py \x3Cline> \x3Ccol>

Signature Help

lsp-query signature /path/to/file.py \x3Cline> \x3Ccol>

Rename Preview

lsp-query rename /path/to/file.py \x3Cline> \x3Ccol> new_name

Server Management

lsp-query languages                    # Show all supported languages + install status
lsp-query servers                      # List running language daemons
lsp-query shutdown                     # Stop all daemons
lsp-query shutdown python              # Stop just the Python daemon

What's Included

{baseDir}/
├── SKILL.md              # This file
└── scripts/
    └── lsp-query.py      # Python script -- multi-language LSP client + daemon manager

lsp-query.py is a self-contained Python script (~850 lines, stdlib only, no pip dependencies). It:

  1. Forks a single background daemon process on first use
  2. The daemon lazy-starts language servers as needed (e.g., pyright for .py, typescript-language-server for .ts)
  3. Communicates with the daemon over a Unix socket (~/.cache/lsp-query/daemon.sock)
  4. Translates CLI commands into LSP JSON-RPC requests and prints human-readable results
  5. Each language server auto-stops after 5 minutes idle; the daemon itself stops when all servers are idle

Environment Variables

Variable Default Description
LSP_WORKSPACE git root or cwd Workspace root for LSP servers
LSP_SERVER auto per language Override server command for ALL languages
LSP_LANG auto from extension Force a specific language (bypass detection)
LSP_TIMEOUT 300 Server idle timeout in seconds
LSP_SOCK ~/.cache/lsp-query/daemon.sock Unix socket path

Examples

export LSP_WORKSPACE=/path/to/repo

# Python
lsp-query symbols src/model.py
lsp-query hover src/model.py 42 10
lsp-query references src/model.py 42 10

# TypeScript (auto-detected from .ts extension)
lsp-query symbols src/index.ts
lsp-query definition src/app.tsx 15 8

# Rust
lsp-query symbols src/main.rs
lsp-query diagnostics src/lib.rs

# Check what's available
lsp-query languages
lsp-query servers

Troubleshooting

  • "Server not found for X": The language server binary isn't installed. The error message includes the install command.
  • "could not connect to LSP daemon": Daemon failed to start. Verify Python 3.10+ is available.
  • Import errors in diagnostics: Expected when packages aren't installed in the current Python environment. These resolve on machines with the correct venv.
  • Stale results: Run lsp-query shutdown to restart all servers fresh.
  • Slow first query per language: Each server takes 1-2 seconds to cold-start. Subsequent queries to the same language are ~200ms.
  • Wrong language detected: Use LSP_LANG=rust lsp-query symbols myfile to force.
安全使用建议
This skill appears to do what it claims: run a local Python LSP client that starts language servers on-demand. Before installing, consider: 1) Inspect the included scripts (lsp-query.py is bundled) and only symlink into a PATH location you control; 2) Language servers are started as subprocesses and will run with your user privileges — install language servers from trusted package sources (npm, apt, rustup, go) and avoid installing unknown binaries; 3) The daemon creates a Unix socket under ~/.cache/lsp-query and will access files under the configured workspace — avoid pointing it at sensitive directories or set LSP_WORKSPACE explicitly; 4) LSP_SERVER environment variable can override the server command (it can be used intentionally or abused) — don't set it to untrusted commands. If you need extra caution, run the script directly (not symlinked), or run it inside an isolated environment/container or a workspace with non-sensitive data.
功能分析
Type: OpenClaw Skill Name: lsp Version: 2.0.0 The skill provides a multi-language LSP client. The `SKILL.md` is descriptive and does not contain prompt injection attempts. The `lsp-query.py` script uses standard Python modules and subprocess calls to manage LSP servers. The most significant finding is the `LSP_SERVER` environment variable, which, if set, allows overriding the default language server command with an arbitrary command (found in `scripts/lsp-query.py`). While intended for flexibility, this creates a critical remote code execution (RCE) vulnerability if an attacker can control this environment variable, as the script will execute the provided command. This is a design flaw that enables potential attacks, classifying it as suspicious rather than malicious, as there's no evidence of the skill itself attempting to exploit this.
能力评估
Purpose & Capability
Name/description match what is implemented: a Python-based LSP client that lazy-starts per-language LSP servers and exposes CLI commands for definition, references, hover, symbols, diagnostics, etc. Requiring python3 and recommending installing language servers is expected and proportional.
Instruction Scope
SKILL.md and the included script instruct the agent/user to run the script, set LSP_WORKSPACE, and to symlink the script into PATH. The runtime behavior (reading workspace files, opening files for LSP analysis, managing Unix socket at ~/.cache/lsp-query/daemon.sock, spawning language-server subprocesses) is consistent with the stated purpose. Note: the skill will read repository files and manage background processes — this is necessary for LSP functionality but means it will access any files under the configured workspace.
Install Mechanism
No install spec; the skill is instruction-only with a bundled Python script. It does not download or execute code from remote URLs during install. It does suggest (to the user) standard package installs for individual language servers (npm/go/rustup/apt/brew), which is expected.
Credentials
Only runtime dependency declared is python3; environment variables are limited to LSP_WORKSPACE, LSP_SERVER, LSP_LANG, LSP_TIMEOUT, LSP_SOCK and are documented in SKILL.md. No credentials or unrelated secrets are requested.
Persistence & Privilege
The script launches a background daemon and per-language server subprocesses and uses a Unix socket in the user's home cache directory. always:false (not force-included) and normal model invocation settings are used. This persistence is expected for a daemonized LSP client, but users should be aware the process can remain running and will run with the user's privileges while active.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install lsp
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /lsp 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v2.0.0
Multi-language support: auto-detects language from file extension and lazy-starts per-language daemons. Supports Python, TypeScript/JS, Rust, Go, C/C++, Bash, Java, CSS, HTML, JSON. New commands: languages, servers, shutdown <lang>.
v1.4.0
Fix: renamed script to lsp-query.py so clawhub bundles it correctly. Updated all SKILL.md references.
v1.3.0
Fix: renamed script to lsp-query.py for clawhub bundling.
v1.2.0
Fix: ensure scripts/lsp-query is included in the published bundle.
v1.1.0
Clarified that lsp-query is a Python script included in the skill at scripts/lsp-query. Added explicit setup instructions for symlinking into PATH and direct invocation. Documented what the script does internally.
v1.0.0
Initial release
元数据
Slug lsp
版本 2.0.0
许可证
累计安装 1
当前安装数 1
历史版本数 6
常见问题

LSP Code Navigation 是什么?

Multi-language code navigation via persistent LSP daemons. Supports Python (pyright), TypeScript/JS, Rust, Go, C/C++, Bash, Java, CSS, HTML, JSON. Auto-detec... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 490 次。

如何安装 LSP Code Navigation?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install lsp」即可一键安装,无需额外配置。

LSP Code Navigation 是免费的吗?

是的,LSP Code Navigation 完全免费(开源免费),可自由下载、安装和使用。

LSP Code Navigation 支持哪些平台?

LSP Code Navigation 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 LSP Code Navigation?

由 AdamNaghs(@adamnaghs)开发并维护,当前版本 v2.0.0。

💬 留言讨论