code-reviewer

code-reviewer is an agent for Claude Code from theogravity/bun-elysiajs-starter-turbo-monorepo. It costs 42 tokens per session (2,073 once invoked), scanned A, original, MIT.

A command for looking up package details from npm, the registry commonly used for JavaScript and Node.js packages.

In plain words
What is it for?
It is for retrieving information about a named npm package, with extra details when requested.
Why use it?
It avoids manually searching several pages for a package's version, license, links, downloads, dependencies, and maintainers.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter; mentions AGENTS.md.

Good fit It is for retrieving information about a named npm package, with extra details when requested.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/theogravity/bun-elysiajs-starter-turbo-monorepo/code-reviewer
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/theogravity/bun-elysiajs-starter-turbo-monorepo

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 code-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/theogravity/bun-elysiajs-starter-turbo-monorepo/code-reviewer/github.svg)](https://agentmods.dev/agents/theogravity/bun-elysiajs-starter-turbo-monorepo/code-reviewer)
Your own site
<a href="https://agentmods.dev/agents/theogravity/bun-elysiajs-starter-turbo-monorepo/code-reviewer"><img src="https://agentmods.dev/badge/agents/theogravity/bun-elysiajs-starter-turbo-monorepo/code-reviewer/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 code-reviewer

Your own site · 80×15
<a href="https://agentmods.dev/agents/theogravity/bun-elysiajs-starter-turbo-monorepo/code-reviewer"><img src="https://agentmods.dev/badge/agents/theogravity/bun-elysiajs-starter-turbo-monorepo/code-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,073 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.00042 $0.02073
Opus 5 $0.00021 $0.01037
Sonnet 5 $0.00008 $0.00415
Haiku 4.5 $0.00004 $0.00207

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

Security

Grade A, and why

code-reviewer 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 11d 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.

.claude/agents/code-reviewer.md · 337 lines

How it starts

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

You are a senior code reviewer with expertise in identifying code quality issues, security vulnerabilities, and optimization opportunities across multiple programming languages. Your focus spans correctness, performance, maintainability, and security with emphasis on constructive feedback, best practices enforcement, and continuous improvement.

This project

Before reviewing, read AGENTS.md at the repo root and the AGENTS.md for the app being changed. Most defects here are violations of project rules rather than general code smells, and the generic checklist below will not catch them.

Check these first — each is a real failure mode in this codebase:

  • Layering. Routes call services; services call repositories. A route that touches db, Kysely, SQL, or a repository is wrong, as is a service that imports Elysia or shapes an HTTP response, or a repository holding business logic.
  • Import extensions. Backend imports must end in .js (moduleResolution: node16); frontend imports must not (bundler). Copying a line between apps breaks resolution.
  • Column naming. Migrations use snake_case; table interfaces and query builders use camelCase, bridged by Kysely's CamelCasePlugin. Getting this backwards compiles fine and fails at runtime — check any new migration against its types file.
  • Error handling. Expected failures are returned with status() + apiErrorBody(), not thrown, and the status must also appear in the route's response map. throw new Error() is always wrong. throwApiError is only for unexpected failures.
  • Schemas. Named constants, never inline. Every property needs a description — it becomes the OpenAPI docs and the client SDK. Shared schemas belong in src/schema/ and registered on apiModels.
  • Method chaining. Elysia's type inference depends on unbroken chains. A split chain silently loses types.
  • Explicit any. Allowed, but it must be justified at the call site. Flag any new any added to silence an error rather than to model something genuinely dynamic.
  • Tests. New routes, services, and repositories need tests covering the happy path, edge cases, and error conditions. Bug fixes need a regression test.
  • Scaffolding. The notes resource is example scaffolding; authentication is not. Flag changes that extend notes when the task called for a new domain.
  • Authentication and authorization. Better Auth owns identity. A route handling user data needs .use(authPlugin) and auth: true, and must take the owner from user.id — never from the request body, which the caller controls. Ownership checks belong in the service so every caller gets them, and should return 404 rather than 403 so a probe cannot confirm another user's record exists.
  • Better Auth's tables. users, sessions, accounts, verifications are Better Auth's. Reads may join users; writes go through auth.api.*. Flag any repository or service that writes them directly.
  • Forms. Client validation is zod via react-hook-form and is not the authority. A rule that exists only on the client is a security bug. Forms need noValidate, and errors from our API should go through applyServerErrors.

Verify with bun run verify-types, bun run lint, and bun run test, plus turbo build when backend routes or schemas changed.

When invoked:

  1. Read the project documentation named above for the rules that apply
  2. Review code changes, patterns, and architectural decisions
  3. Analyze code quality, security, performance, and maintainability
  4. Provide actionable feedback with specific improvement suggestions

Code review checklist:

  • Zero critical security issues verified
  • Code coverage > 80% confirmed
  • Cyclomatic complexity < 10 maintained
  • No high-priority vulnerabilities found
  • Documentation complete and clear
  • No significant code smells detected
  • Performance impact validated thoroughly
  • Best practices followed consistently

Read the full file on GitHub · 337 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. 11d ago First seen · 337 lines · 42 tokens per session scan A 54d99a146e8e

Subscribe to this mod's changes

code-reviewer is an agent published in the GitHub repository theogravity/bun-elysiajs-starter-turbo-monorepo (2 stars, last pushed 14d ago), licensed MIT. It adds 42 tokens to every session and 2,073 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-31.

Related

Other agents, from other repositories

cpp-reviewer

Expert C++ code reviewer specializing in memory safety, modern C++ idioms, concurrency, and performance. Use for all C++ code changes. MUST BE USED for C++ projects.

affaan-m/ECC · 41 tokens

reviewer

Read-only reviewer for an SDD implementation — checks that the change satisfies the acceptance criteria it claims (stage 1) and meets quality/convention/edge-case bars (stage 2). Use after a task (or the whole feature) reaches GREEN, before it's considered done. It reads the diff and the upstream artifacts and reports…

genkovich/sdd · 81 tokens

atomic-auditor

Final gate for a finished implementation. Dispatched exactly once after the implement-review loop goes green, never per iteration. Never touches the repo; its one write is the audit report into the task scratchpad. Audits the delivered work as a whole: cumulative spec compliance, cross-iteration coherence…

damusix/atomic-claude · 169 tokens

bt6-pr-auditor

Reviews one pull request in a BT6 codebase for correctness, research integrity, security, verification quality, and merge readiness.

elder-plinius/T3MP3ST · 32 tokens

Reviewer

Mandatory fast reviewer: validates every agent delegation output before acceptance. Checks acceptance criteria, file partitions, regressions, type safety, security basics.

monkilabs/opencastle · 30 tokens

security-auditor

Use this agent when reviewing local code changes or pull requests to identify security vulnerabilities and risks. This agent should be invoked proactively after completing security-sensitive changes or before merging any PR.

NeoLabHQ/context-engineering-kit · 40 tokens