# Send LSP Code Navigation to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "lsp",
    "name": "LSP Code Navigation",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/AdamNaghs/lsp",
    "canonicalUrl": "https://clawhub.ai/AdamNaghs/lsp",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/lsp",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lsp",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/lsp-query.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "lsp",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T20:42:55.754Z",
      "expiresAt": "2026-05-11T20:42:55.754Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lsp",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lsp",
        "contentDisposition": "attachment; filename=\"lsp-2.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "lsp"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/lsp"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/lsp",
    "downloadUrl": "https://openagent3.xyz/downloads/lsp",
    "agentUrl": "https://openagent3.xyz/skills/lsp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lsp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lsp/agent.md"
  }
}
```
## Documentation

### 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

LanguageServerExtensionsInstallPythonpyright-langserver.py, .pyi, .pyxnpm install -g pyrightTypeScript/JStypescript-language-server.ts, .tsx, .js, .jsx, .mjs, .cjsnpm install -g typescript-language-server typescriptRustrust-analyzer.rsrustup component add rust-analyzerGogopls.gogo install golang.org/x/tools/gopls@latestC/C++clangd.c, .h, .cpp, .cc, .hppapt install clangd or brew install llvmBashbash-language-server.sh, .bash, .zshnpm install -g bash-language-serverJavajdtls.javaeclipse.jdt.lsCSSvscode-css-language-server.css, .scss, .lessnpm install -g vscode-langservers-extractedHTMLvscode-html-language-server.html, .htmnpm install -g vscode-langservers-extractedJSONvscode-json-language-server.json, .jsoncnpm 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.

### 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 <command> [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 <line> <col>

### Find References

lsp-query references /path/to/file.py <line> <col>

### Hover (Type Info)

lsp-query hover /path/to/file.py <line> <col>

### 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 <line> <col>

### Signature Help

lsp-query signature /path/to/file.py <line> <col>

### Rename Preview

lsp-query rename /path/to/file.py <line> <col> 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:

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

### Environment Variables

VariableDefaultDescriptionLSP_WORKSPACEgit root or cwdWorkspace root for LSP serversLSP_SERVERauto per languageOverride server command for ALL languagesLSP_LANGauto from extensionForce a specific language (bypass detection)LSP_TIMEOUT300Server idle timeout in secondsLSP_SOCK~/.cache/lsp-query/daemon.sockUnix 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: AdamNaghs
- Version: 2.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-04T20:42:55.754Z
- Expires at: 2026-05-11T20:42:55.754Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/lsp)
- [Send to Agent page](https://openagent3.xyz/skills/lsp/agent)
- [JSON manifest](https://openagent3.xyz/skills/lsp/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/lsp/agent.md)
- [Download page](https://openagent3.xyz/downloads/lsp)