claude-ide-bridge: Skill for Claude Code

.claude/skills/ide-review/SKILL.md

ide-review is a skill for Claude Code from Oolab-labs/claude-ide-bridge. It costs 44 tokens per session (828 once invoked), scanned A, original, MIT.

A pull-request review workflow that combines the code diff with editor language analysis and GitHub information.

In plain words
What is it for?
It is for reviewing definitions, references, types, diagnostics, tests, CI status, and the likely impact of a pull request.
Why use it?
It checks how a proposed change connects to the rest of the code, rather than judging the changed lines in isolation.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

This is Oolab-labs/claude-ide-bridge's own configuration. It tells Claude Code how to work on claude-ide-bridge itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything claude-ide-bridge configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Oolab-labs/claude-ide-bridge. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Oolab-labs/claude-ide-bridge/main/.claude/skills/ide-review/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Oolab-labs/claude-ide-bridge

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ide-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/oolab-labs/claude-ide-bridge/ide-review/github.svg)](https://agentmods.dev/skills/oolab-labs/claude-ide-bridge/ide-review)
Your own site
<a href="https://agentmods.dev/skills/oolab-labs/claude-ide-bridge/ide-review"><img src="https://agentmods.dev/badge/skills/oolab-labs/claude-ide-bridge/ide-review/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ide-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/oolab-labs/claude-ide-bridge/ide-review"><img src="https://agentmods.dev/badge/skills/oolab-labs/claude-ide-bridge/ide-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 828 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00044 $0.00828
Opus 5 $0.00022 $0.00414
Sonnet 5 $0.00009 $0.00166
Haiku 4.5 $0.00004 $0.00083

Measured 10d ago against content hash 0a1a6b79ffc8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

ide-review scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.claude/skills/ide-review/SKILL.md · 82 lines

How it starts

The opening of the file, as written. The whole thing — 82 lines — stays where its author put it; the contents beside it link to each section on GitHub.

IDE PR Review Workflow

Prerequisites

  1. Check if the getToolCapabilities MCP tool is available to you.
    • Not available (no MCP tool by that name): stop and tell the user: "This skill requires the Claude IDE Bridge with a connected VS Code extension. It uses LSP tools (hover, references, call hierarchy, diagnostics) and GitHub tools for deep PR analysis.

      To use this skill:

      1. Start the bridge: npm run start-all (in claude-ide-bridge/)
      2. Ensure the Claude IDE Bridge extension is installed in your IDE
      3. Use the claude --ide session (not remote-control)

      Alternative: use gh pr diff <number> for a basic diff review."

    • Available: call it. If extensionConnected is false: show the same message. If true: proceed.

Review a pull request using the IDE bridge's full code intelligence stack. Goes beyond diff reading by using LSP to understand the impact of changes.

Workflow

Phase 1: Gather PR context

  1. Use githubViewPR to get PR details (title, description, author, base branch): $ARGUMENTS
  2. Use githubGetPRDiff to get the full diff
  3. Use githubListRuns to check CI status on the PR branch

Phase 2: Deep code analysis

For each changed file in the diff:

  1. Use openFile to open the file at the first changed line
  2. Use getDiagnostics to check for any errors or warnings in modified files
  3. For each modified function or class:
    • Use getHover to verify type signatures are correct
    • Use findReferences to check if callers are affected by the change
    • Use getCallHierarchy (incoming) to understand who depends on modified code
    • Use goToDefinition on any new types or imports to verify they exist
  4. For renamed symbols:
    • Use searchWorkspace to check for any missed references (string literals, comments, config files that LSP doesn't cover)
  5. For deleted code:
    • Use findReferences on deleted exports to verify nothing still imports them

Phase 3: Run quality checks

Read the full file on GitHub · 82 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 82 lines · 44 tokens per session scan A 0a1a6b79ffc8

Subscribe to this mod's changes

ide-review is a skill published in the GitHub repository Oolab-labs/claude-ide-bridge (38 stars, last pushed 4mo ago), licensed MIT. It adds 44 tokens to every session and 828 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

lsp-inspect

Full code quality audit for a file, package, or directory. Supports batch mode (directory walk with --top ranking), comparison mode (--diff for branch-only issues), severity calibration by blast radius, fix suggestions, and confidence tiers. Applies a check taxonomy (dead symbols, silent failures, error wrapping…

blackwell-systems/agent-lsp · 126 tokens

lsp-dead-code

Enumerate exported symbols in a file and surface those with zero references across the workspace. Use when auditing for dead code, cleaning up APIs, or checking which exports are safe to remove.

blackwell-systems/agent-lsp · 43 tokens

lsp-impact

Blast-radius analysis for a symbol or file — shows all callers, type supertypes/subtypes, and reference count before you change it. Use when refactoring, deleting, or changing the signature of any function, type, or method. Also accepts a file path to surface all exported-symbol impact in one shot.

blackwell-systems/agent-lsp · 67 tokens

lsp-concurrency-audit

Concurrency safety audit for a type or file. Maps all fields, traces which are accessed from concurrent contexts (goroutines, threads, async tasks), and flags fields that lack synchronization. Produces a field-level safety report. Language-agnostic across 4 concurrency families.

blackwell-systems/agent-lsp · 61 tokens

go-testing

Trigger: Go tests, go test coverage, Bubbletea teatest, golden files. Apply focused Go testing patterns.

Gentleman-Programming/gentle-ai · 26 tokens

security-review

Perform a focused security review of pending git changes to identify high-confidence security vulnerabilities with real exploitation potential. Use this skill when the user asks for a security review, security audit, vulnerability scan, or wants to check pending changes on a branch for security issues before merging.…

waybarrios/opencode-power-pack · 64 tokens