LSP Setup for GitHub Copilot CLI
UTILITY SKILL — installs and configures Language Server Protocol servers for Copilot CLI.
USE FOR: "setup LSP", "install language server", "configure LSP for Java", "add TypeScript LSP", "enable code intelligence", "I need go-to-definition", "find references not working", "need better code understanding"
DO NOT USE FOR: general coding tasks, IDE/editor LSP configuration, non-Copilot-CLI setups
Workflow
- Ask the language — use
ask_user to ask which programming language(s) the user wants LSP support for
- Detect the OS — run
uname -s (or check for Windows via $env:OS / %OS%) to determine macOS, Linux, or Windows
- Look up the LSP server — read
references/lsp-servers.md for known servers, install commands, and config snippets
- Ask scope — use
ask_user to ask whether the config should be user-level (~/.copilot/lsp-config.json) or repo-level (lsp.json at the repo root or .github/lsp.json)
- Install the server — run the appropriate install command for the detected OS
- Write the config — merge the new server entry into the chosen config file (
~/.copilot/lsp-config.json for user-level; lsp.json or .github/lsp.json for repo-level). If a repo-level config already exists, keep using that location; otherwise ask the user which repo-level location they prefer. Create the file if missing and preserve existing entries.
- Verify — confirm the LSP binary is on
$PATH and the config file is valid JSON
Configuration Format
Copilot CLI reads LSP configuration from user-level or repo-level locations, and repo-level config takes precedence over user-level config:
- User-level:
~/.copilot/lsp-config.json
- Repo-level:
lsp.json (repo root) or .github/lsp.json
The JSON structure:
{
"lspServers": {
"<server-key>": {
"command": "<binary>",
"args": ["--stdio"],
"fileExtensions": {
".<ext>": "<languageId>",
".<ext2>": "<languageId>"
}
}
}
}
Key rules
command is the binary name (must be on $PATH) or an absolute path.
args almost always includes "--stdio" to use standard I/O transport.
fileExtensions maps each file extension (with leading dot) to a Language ID.
- Multiple servers can coexist in
lspServers.
- When merging into an existing file, never overwrite other server entries — only add or update the target language key.
Behavior
- Always use
ask_user with choices when asking the user to pick a language or scope.
- If the language is not listed in
references/lsp-servers.md, search the web for " LSP server" and guide the user through manual configuration.
- If a package manager is not available (e.g. no Homebrew on macOS), suggest alternative install methods from the reference file.
- After installation, run
which <binary> (or where.exe on Windows) to confirm the binary is accessible.
- Show the user the final config JSON before writing it.
- If the config file already exists, read it first and merge — do not clobber.
Verification
After setup, tell the user:
- Type
/exit to quit Copilot CLI — this is required so the new LSP configuration is loaded on next launch
- Re-launch
copilot in a project with files of the configured language
- Run
/lsp to check the server status
- Try code intelligence features like go-to-definition or hover
1---2name: lsp-setup3description: LSP setup for any language — go-to-definition, find-refs, hover, diagnostics4---56# LSP Setup for GitHub Copilot CLI78**UTILITY SKILL** — installs and configures Language Server Protocol servers for Copilot CLI.9USE FOR: "setup LSP", "install language server", "configure LSP for Java", "add TypeScript LSP", "enable code intelligence", "I need go-to-definition", "find references not working", "need better code understanding"10DO NOT USE FOR: general coding tasks, IDE/editor LSP configuration, non-Copilot-CLI setups1112## Workflow13141. **Ask the language** — use `ask_user` to ask which programming language(s) the user wants LSP support for152. **Detect the OS** — run `uname -s` (or check for Windows via `$env:OS` / `%OS%`) to determine macOS, Linux, or Windows163. **Look up the LSP server** — read `references/lsp-servers.md` for known servers, install commands, and config snippets174. **Ask scope** — use `ask_user` to ask whether the config should be user-level (`~/.copilot/lsp-config.json`) or repo-level (`lsp.json` at the repo root or `.github/lsp.json`)185. **Install the server** — run the appropriate install command for the detected OS196. **Write the config** — merge the new server entry into the chosen config file (`~/.copilot/lsp-config.json` for user-level; `lsp.json` or `.github/lsp.json` for repo-level). If a repo-level config already exists, keep using that location; otherwise ask the user which repo-level location they prefer. Create the file if missing and preserve existing entries.207. **Verify** — confirm the LSP binary is on `$PATH` and the config file is valid JSON2122## Configuration Format2324Copilot CLI reads LSP configuration from user-level or repo-level locations, and repo-level config takes precedence over user-level config:2526- **User-level**: `~/.copilot/lsp-config.json`27- **Repo-level**: `lsp.json` (repo root) or `.github/lsp.json`2829The JSON structure:3031```json32{33 "lspServers": {34 "<server-key>": {35 "command": "<binary>",36 "args": ["--stdio"],37 "fileExtensions": {38 ".<ext>": "<languageId>",39 ".<ext2>": "<languageId>"40 }41 }42 }43}44```4546### Key rules4748- `command` is the binary name (must be on `$PATH`) or an absolute path.49- `args` almost always includes `"--stdio"` to use standard I/O transport.50- `fileExtensions` maps each file extension (with leading dot) to a [Language ID](https://code.visualstudio.com/docs/languages/identifiers#_known-language-identifiers).51- Multiple servers can coexist in `lspServers`.52- When merging into an existing file, **never overwrite** other server entries — only add or update the target language key.5354## Behavior5556- Always use `ask_user` with `choices` when asking the user to pick a language or scope.57- If the language is not listed in `references/lsp-servers.md`, search the web for "<language> LSP server" and guide the user through manual configuration.58- If a package manager is not available (e.g. no Homebrew on macOS), suggest alternative install methods from the reference file.59- After installation, run `which <binary>` (or `where.exe` on Windows) to confirm the binary is accessible.60- Show the user the final config JSON before writing it.61- If the config file already exists, read it first and merge — do not clobber.6263## Verification6465After setup, tell the user:66671. Type `/exit` to quit Copilot CLI — this is **required** so the new LSP configuration is loaded on next launch682. Re-launch `copilot` in a project with files of the configured language693. Run `/lsp` to check the server status704. Try code intelligence features like go-to-definition or hover