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.
curl -O https://raw.githubusercontent.com/Oolab-labs/claude-ide-bridge/main/.claude/skills/ide-quality/SKILL.mdgit clone --depth 1 https://github.com/Oolab-labs/claude-ide-bridgeWrote 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.
[](https://agentmods.dev/skills/oolab-labs/claude-ide-bridge/ide-quality)<a href="https://agentmods.dev/skills/oolab-labs/claude-ide-bridge/ide-quality"><img src="https://agentmods.dev/badge/skills/oolab-labs/claude-ide-bridge/ide-quality/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.
<a href="https://agentmods.dev/skills/oolab-labs/claude-ide-bridge/ide-quality"><img src="https://agentmods.dev/badge/skills/oolab-labs/claude-ide-bridge/ide-quality.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00040 | $0.01252 |
| Opus 5 | $0.00020 | $0.00626 |
| Sonnet 5 | $0.00008 | $0.00250 |
| Haiku 4.5 | $0.00004 | $0.00125 |
Grade A, and why
ide-quality 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 9d 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.
Copies of this mod
1 near-identical copy found in the catalogue:
- ide-quality — 100% identical, 0 lines differ
How it starts
The opening of the file, as written. The whole thing — 128 lines — stays where its author put it; the contents beside it link to each section on GitHub.
IDE Quality Sweep Workflow
Prerequisites
- Check if the
getToolCapabilitiesMCP tool is available to you.- Available: call it, check
extensionConnected→ use IDE Path below. - Not available: use CLI Path below.
- Available: call it, check
IDE Path
Use this path when bridge MCP tools are available and extension is connected.
Phase 1: Assess the environment
- Use
getToolCapabilitiesto discover available linters, formatters, and test runners - Use
getProjectInfoto understand the project type and languages - Determine the scope: if
$ARGUMENTSis provided, focus on that path; otherwise sweep the whole workspace
Phase 2: Collect all diagnostics
- Use
getDiagnosticsto get errors and warnings across the workspace - Group diagnostics by severity (error → warning → info) and by file
- Report the total count: "Found N errors, M warnings across K files"
Phase 3: Auto-fix
- For each file with fixable diagnostics:
- Use
fixAllLintErrorsto apply auto-fixes - Use
organizeImportsto clean up imports - Use
formatDocumentto apply consistent formatting
- Use
- Use
getDiagnosticsagain to see what remains after auto-fixing - Report: "Auto-fixed X issues. Y issues remain that need manual attention."
Phase 4: Manual fixes (remaining errors only)
- For remaining errors (not warnings), analyze the diagnostic message
- Use
getHoverandgoToDefinitionto understand the context - Use
editTextto apply targeted fixes - Use
saveDocumentafter each fix
Phase 5: Verify
- Use
runTeststo run the test suite - If tests fail, identify if the failure was caused by our changes:
- Use
getDiagnosticson test files - If we broke something, revert the specific change
- Use
- Use
getDiagnosticsone final time to confirm we haven't introduced new issues
Phase 6: Report and optionally commit
- Summarize all changes made:
- Files modified
- Issues fixed (auto vs manual)
- Issues remaining (with explanations)
- Test results
- Ask whether to commit the cleanup:
- If yes:
gitAddthe changed files,gitCommitwith message "chore: fix lint errors and format code"
- If yes:
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.
- 9d ago First seen · 128 lines · 40 tokens per session scan A d832946a7fe1
ide-quality is a skill published in the GitHub repository Oolab-labs/claude-ide-bridge (38 stars, last pushed 4mo ago), licensed MIT. It adds 40 tokens to every session and 1,252 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.
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…
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.
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.
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.
go-testing
Trigger: Go tests, go test coverage, Bubbletea teatest, golden files. Apply focused Go testing patterns.
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.…