Skip to content

Commit 13d5de8

Browse files
authored
Merge pull request #1272 from github/skill/lsp-setup
Add lsp-setup skill for configuring LSP servers in Copilot CLI
2 parents 1dc8a40 + 9d8c98e commit 13d5de8

3 files changed

Lines changed: 476 additions & 0 deletions

File tree

docs/README.skills.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ See [CONTRIBUTING.md](../CONTRIBUTING.md#adding-skills) for guidelines on how to
183183
| [kotlin-mcp-server-generator](../skills/kotlin-mcp-server-generator/SKILL.md) | Generate a complete Kotlin MCP server project with proper structure, dependencies, and implementation using the official io.modelcontextprotocol:kotlin-sdk library. | None |
184184
| [kotlin-springboot](../skills/kotlin-springboot/SKILL.md) | Get best practices for developing applications with Spring Boot and Kotlin. | None |
185185
| [legacy-circuit-mockups](../skills/legacy-circuit-mockups/SKILL.md) | Generate breadboard circuit mockups and visual diagrams using HTML5 Canvas drawing techniques. Use when asked to create circuit layouts, visualize electronic component placements, draw breadboard diagrams, mockup 6502 builds, generate retro computer schematics, or design vintage electronics projects. Supports 555 timers, W65C02S microprocessors, 28C256 EEPROMs, W65C22 VIA chips, 7400-series logic gates, LEDs, resistors, capacitors, switches, buttons, crystals, and wires. | `references/28256-eeprom.md`<br />`references/555.md`<br />`references/6502.md`<br />`references/6522.md`<br />`references/6C62256.md`<br />`references/7400-series.md`<br />`references/assembly-compiler.md`<br />`references/assembly-language.md`<br />`references/basic-electronic-components.md`<br />`references/breadboard.md`<br />`references/common-breadboard-components.md`<br />`references/connecting-electronic-components.md`<br />`references/emulator-28256-eeprom.md`<br />`references/emulator-6502.md`<br />`references/emulator-6522.md`<br />`references/emulator-6C62256.md`<br />`references/emulator-lcd.md`<br />`references/lcd.md`<br />`references/minipro.md`<br />`references/t48eeprom-programmer.md` |
186+
| [lsp-setup](../skills/lsp-setup/SKILL.md) | Enable code intelligence (go-to-definition, find-references, hover, type info) for any programming language by installing and configuring an LSP server for Copilot CLI. Detects the OS, installs the right server, and generates the JSON configuration (user-level or repo-level). Use when you need deeper code understanding and no LSP server is configured, or when the user asks to set up, install, or configure an LSP server. | `references/lsp-servers.md` |
186187
| [make-repo-contribution](../skills/make-repo-contribution/SKILL.md) | All changes to code must follow the guidance documented in the repository. Before any issue is filed, branch is made, commits generated, or pull request (or PR) created, a search must be done to ensure the right steps are followed. Whenever asked to create an issue, commit messages, to push code, or create a PR, use this skill so everything is done correctly. | `assets/issue-template.md`<br />`assets/pr-template.md` |
187188
| [make-skill-template](../skills/make-skill-template/SKILL.md) | Create new Agent Skills for GitHub Copilot from prompts or by duplicating this template. Use when asked to "create a skill", "make a new skill", "scaffold a skill", or when building specialized AI capabilities with bundled resources. Generates SKILL.md files with proper frontmatter, directory structure, and optional scripts/references/assets folders. | None |
188189
| [markdown-to-html](../skills/markdown-to-html/SKILL.md) | Convert Markdown files to HTML similar to `marked.js`, `pandoc`, `gomarkdown/markdown`, or similar tools; or writing custom script to convert markdown to html and/or working on web template systems like `jekyll/jekyll`, `gohugoio/hugo`, or similar web templating systems that utilize markdown documents, converting them to html. Use when asked to "convert markdown to html", "transform md to html", "render markdown", "generate html from markdown", or when working with .md files and/or web a templating system that converts markdown to HTML output. Supports CLI and Node.js workflows with GFM, CommonMark, and standard Markdown flavors. | `references/basic-markdown-to-html.md`<br />`references/basic-markdown.md`<br />`references/code-blocks-to-html.md`<br />`references/code-blocks.md`<br />`references/collapsed-sections-to-html.md`<br />`references/collapsed-sections.md`<br />`references/gomarkdown.md`<br />`references/hugo.md`<br />`references/jekyll.md`<br />`references/marked.md`<br />`references/pandoc.md`<br />`references/tables-to-html.md`<br />`references/tables.md`<br />`references/writing-mathematical-expressions-to-html.md`<br />`references/writing-mathematical-expressions.md` |

skills/lsp-setup/SKILL.md

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
---
2+
name: lsp-setup
3+
description: 'Enable code intelligence (go-to-definition, find-references, hover, type info) for any programming language by installing and configuring an LSP server for Copilot CLI. Detects the OS, installs the right server, and generates the JSON configuration (user-level or repo-level). Use when you need deeper code understanding and no LSP server is configured, or when the user asks to set up, install, or configure an LSP server.'
4+
---
5+
6+
# LSP Setup for GitHub Copilot CLI
7+
8+
**UTILITY SKILL** — installs and configures Language Server Protocol servers for Copilot CLI.
9+
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"
10+
DO NOT USE FOR: general coding tasks, IDE/editor LSP configuration, non-Copilot-CLI setups
11+
12+
## Workflow
13+
14+
1. **Ask the language** — use `ask_user` to ask which programming language(s) the user wants LSP support for
15+
2. **Detect the OS** — run `uname -s` (or check for Windows via `$env:OS` / `%OS%`) to determine macOS, Linux, or Windows
16+
3. **Look up the LSP server** — read `references/lsp-servers.md` for known servers, install commands, and config snippets
17+
4. **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`)
18+
5. **Install the server** — run the appropriate install command for the detected OS
19+
6. **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.
20+
7. **Verify** — confirm the LSP binary is on `$PATH` and the config file is valid JSON
21+
22+
## Configuration Format
23+
24+
Copilot CLI reads LSP configuration from user-level or repo-level locations, and repo-level config takes precedence over user-level config:
25+
26+
- **User-level**: `~/.copilot/lsp-config.json`
27+
- **Repo-level**: `lsp.json` (repo root) or `.github/lsp.json`
28+
29+
The JSON structure:
30+
31+
```json
32+
{
33+
"lspServers": {
34+
"<server-key>": {
35+
"command": "<binary>",
36+
"args": ["--stdio"],
37+
"fileExtensions": {
38+
".<ext>": "<languageId>",
39+
".<ext2>": "<languageId>"
40+
}
41+
}
42+
}
43+
}
44+
```
45+
46+
### Key rules
47+
48+
- `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.
53+
54+
## Behavior
55+
56+
- 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.
62+
63+
## Verification
64+
65+
After setup, tell the user:
66+
67+
1. Type `/exit` to quit Copilot CLI — this is **required** so the new LSP configuration is loaded on next launch
68+
2. Re-launch `copilot` in a project with files of the configured language
69+
3. Run `/lsp` to check the server status
70+
4. Try code intelligence features like go-to-definition or hover

0 commit comments

Comments
 (0)