Open Code Review
CI/CD quality gate specifically for AI-generated code, detecting hallucinated imports, deprecated APIs, and security anti-patterns.
Delv Safety Grade: C
Score 58/100 · assessed 2026-04-18
Open Code Review is a community-built linter targeting AI-generated code defects like hallucinated imports and deprecated APIs. Maintained by solo developer raye-deng with limited visible activity, the tool addresses a real problem but lacks the maturity signals of established linters. Distributed via npm as a global CLI, it requires filesystem read access to scan codebases and likely network access to validate package existence. No environment secrets needed. The repository shows minimal documentation, sparse commit history, and no clear governance or security policy. The concept is sound and the scope reasonably narrow (static analysis only), but the single-maintainer setup and thin transparency create moderate supply-chain risk. Useful for CI gates if you accept community-tool risk, but not yet production-hardened.
Green flags
- Addresses real AI code generation failure modes
- Scoped to static analysis, no code execution
- Distributed via standard npm registry with versioning
- No secrets or credentials required
- Editorial confirms practical value catching phantom imports
Red flags
- Solo maintainer with limited public track record
- Sparse repository activity and minimal commit history
- No security policy or vulnerability disclosure process documented
- Thin documentation on detection heuristics and false positive rates
- No evidence of peer review or security audit
Permissions requested
Install
npm install -g @opencodereview/cli
Review
Install it if you're regularly shipping AI-generated code and want a focused check for the specific ways LLMs fail. Skip it if you already have comprehensive linting and security tooling, or if you're not using AI assistants to write production code. It's a targeted tool that does one thing well.
Good at
- Catches hallucinated imports and non-existent packages that AI confidently suggests.
- Flags deprecated API calls that LLMs often miss when generating code.
- Works as a CI gate with exit codes, so you can block merges automatically.
- Focused on AI-specific failure modes rather than general code quality.
- Lightweight and fast enough to run on every commit.
Watch out
- Ruleset is opinionated and may need tuning for less common frameworks or languages.
- Doesn't integrate directly with IDEs, so you're running it as a separate CLI step.
- Won't catch logic errors or architectural problems, only surface-level issues.
- Documentation assumes familiarity with npm and CI tooling.
- False positives on internal or monorepo packages can require manual config tweaks.
Use cases
- AI code QA
- CI pipelines
- hallucination detection
- pre-merge gating
Getting started
Works with
Similar MCPs
- GitHubFull GitHub API access - manage repos, issues, PRs, and code search. One of the most useful MCPs for any developer workflow.
- GrafanaGrafana Labs' official MCP. Read dashboards, datasources, alerts, and run Loki/Prometheus queries from inside your agent.
- SentryPull live errors, issues, and replays from Sentry into Claude. Great for debugging sessions where the model can see what actually broke in prod.
- MCP CLIInteractive CLI inspector for MCP servers supporting OAuth, tool calls, resource reads, and prompt runs.