lsp-integration
This skill should be used when the user asks to "add LSP server", "configure language server", "set up LSP in plugin", "add code intelligence", "integrate language server protocol", "use pyright-lsp", "use typescript-lsp", "use rust-lsp", "socket transport", "initializationOptions", mentions LSP servers, or discusses extensionToLanguage mappings. Provides guidance for integrating Language Server Protocol servers into Claude Code plugins for enhanced code intelligence.
What this skill does
# 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
```json
{
"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:
```json
{
"go": {
"command": "gopls",
"args": ["serve"],
"extensionToLanguage": {
".go": "go"
}
}
}
```
Reference this file in `plugin.json`:
```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
```json
{
"extensionToLanguage": {
".py": "python",
".pyi": "python",
".pyw": "python"
}
}
```
**env** (optional): Environment variables for the server process
```json
{
"env": {
"PYTHONPATH": "${CLAUDE_PLUGIN_ROOT}/lib"
}
}
```
**transport** (optional): Communication transport - `stdio` (default) or `socket`
```json
{
"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
```json
{
"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:
| Language | Plugin | Binary Required |
| ---------- | ------------------- | ---------------------------- |
| C/C++ | `clangd-lsp` | `clangd` |
| C# | `csharp-lsp` | `csharp-ls` |
| Go | `gopls-lsp` | `gopls` |
| Java | `jdtls-lsp` | `jdtls` |
| Kotlin | `kotlin-lsp` | `kotlin-language-server` |
| Lua | `lua-lsp` | `lua-language-server` |
| PHP | `php-lsp` | `intelephense` |
| Python | `pyright-lsp` | `pyright-langserver` |
| Rust | `rust-analyzer-lsp` | `rust-analyzer` |
| Swift | `swift-lsp` | `sourcekit-lsp` |
| TypeScript | `typescript-lsp` | `typescript-language-server` |
Install the language server binary first, then install the plugin:
```bash
# 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
```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:
```json
{
"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
```json
{
"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:
```json
{
"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. **DocumenRelated in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.