LSP Setup
Detects the languages in your project, installs and configures the right language server, then verifies it with a real diagnostics roundtrip.
Dev & CodingIntermediate★ 67,531⑂ 5,507AI score 9/10Last updated: Aug 9, 2026
What it does
- Routes by file extension (
.ts,.py,.go,.rs,.kt,.swiftand ~20 languages) to the exact per-language reference. - Runs
detect-lsp.tsto scan a project and report each language's builtin server id, whether the executable is on PATH, an install hint, and config status (--jsonsupported). - Supplies per-OS install commands (macOS/Linux/Windows) plus ready-to-paste snippets for
.codex/lsp-client.jsonand.opencode/lsp.json. - Runs
verify-lsp.tsfor a real diagnostics roundtrip that reports OK / FAIL / SKIP with exit codes. - Explains how to choose between competing servers (basedpyright vs pyright vs ty vs ruff) and the priority / initialization / disabled override rules.
Who it's for
- Developers hitting "no LSP server configured" or "server not installed" in editors or coding agents.
- Teams on polyglot monorepos who need diagnostics, go-to-definition, find-references and rename to work everywhere.
- Users of the Codex or OpenCode/omo harnesses editing LSP config files.
Examples
- "Scan this repo and install every missing language server" → detect, then install only what's absent using the OS-specific hint.
- "Python diagnostics are silent" → open the Python reference, install basedpyright, set priority, confirm with
verify-lsp.ts app.py. - "I need a custom in-house server" → define
commandandextensionsin the user config~/.codex/lsp-client.json, since non-builtin ids are ignored in project configs.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/HEAD/packages/shared-skills/skills/lsp-setup/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the packages/shared-skills/skills/lsp-setup folder from the GitHub repo code-yeongyu/oh-my-openagent into my ~/.claude/skills/lsp-setup/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/code-yeongyu/oh-my-openagent.git /tmp/oh-my-openagent && mkdir -p ~/.claude/skills && cp -r /tmp/oh-my-openagent/packages/shared-skills/skills/lsp-setup ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Install Bun first (the scripts need it):
curl -fsSL https://bun.sh/install | bash - Clone the repository:
git clone https://github.com/code-yeongyu/oh-my-openagent.git /tmp/oh-my-openagent - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r /tmp/oh-my-openagent/packages/shared-skills/skills/lsp-setup ~/.claude/skills/ - Verify with
ls ~/.claude/skills/lsp-setupthatreferences/andscripts/came along. - Restart Claude Code and ask something like "set up the LSP for this TypeScript project" to trigger it.
View source on GitHub ↗License: NOASSERTION