LSP Code Intelligence
Teaches the agent to use `lsp` MCP tools for diagnostics, definitions, references, symbols and safe renames.
Dev & CodingIntermediate★ 67,531⑂ 5,507AI score 8/10Last updated: Aug 9, 2026
What it does
- Documents seven
lspMCP tools: status, diagnostics, goto_definition, find_references, symbols, prepare_rename, rename. - Clarifies that
lsp.*/mcp__lsp__*are tool-call names, not shell commands, preventing wasted failed executions. - Recommends filtering diagnostics to
severity: "error"right after edits, and runninglsp.statusfirst when a language server appears missing. - Gives config file locations (
.codex/lsp-client.jsonper project,~/.codex/lsp-client.jsonper user) with a JSON example.
Who it's for
- Developers running Codex/omo-codex with the
lspMCP server available. - Anyone navigating large codebases who needs fast definition and reference lookups.
- Teams who prefer language-server-backed renames over regex find-and-replace.
Examples
- After a multi-file edit: "check the touched directory for errors" →
lsp.diagnosticswith error severity. - "Show me every caller of this function" →
lsp.find_referencesacross the workspace. - "Rename
fetchUsertoloadUsersafely" → validate withlsp.prepare_rename, then applylsp.rename.
· · · 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/omo-codex/plugin/components/lsp/skills/lsp/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/omo-codex/plugin/components/lsp/skills/lsp folder from the GitHub repo code-yeongyu/oh-my-openagent into my ~/.claude/skills/lsp/. 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 && mkdir -p ~/.claude/skills && cp -r oh-my-openagent/packages/omo-codex/plugin/components/lsp/skills/lsp ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/code-yeongyu/oh-my-openagent.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r oh-my-openagent/packages/omo-codex/plugin/components/lsp/skills/lsp ~/.claude/skills/ - Attach the
lspMCP server to your agent and install the language servers you need (e.g.npm i -g typescript-language-server). - Add
.codex/lsp-client.jsonto your project, listing each language'scommandandextensionsas in the JSON sample. - Start a new session and ask for "lsp status" to confirm the skill and servers are wired up.
View source on GitHub ↗License: NOASSERTION