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.
git clone --depth 1 https://github.com/theogravity/bun-elysiajs-starter-turbo-monorepoWrote 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/agents/theogravity/bun-elysiajs-starter-turbo-monorepo/code-reviewer)<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.
<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>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.00042 | $0.02073 |
| Opus 5 | $0.00021 | $0.01037 |
| Sonnet 5 | $0.00008 | $0.00415 |
| Haiku 4.5 | $0.00004 | $0.00207 |
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.
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'sresponsemap.throw new Error()is always wrong.throwApiErroris 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 insrc/schema/and registered onapiModels. - 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 newanyadded 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
notesresource is example scaffolding; authentication is not. Flag changes that extendnoteswhen the task called for a new domain. - Authentication and authorization. Better Auth owns identity. A route handling
user data needs
.use(authPlugin)andauth: true, and must take the owner fromuser.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,verificationsare Better Auth's. Reads may joinusers; writes go throughauth.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 throughapplyServerErrors.
Verify with bun run verify-types, bun run lint, and bun run test, plus
turbo build when backend routes or schemas changed.
When invoked:
- Read the project documentation named above for the rules that apply
- Review code changes, patterns, and architectural decisions
- Analyze code quality, security, performance, and maintainability
- 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
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.
- 11d ago First seen · 337 lines · 42 tokens per session scan A 54d99a146e8e
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.
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.
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…
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…
bt6-pr-auditor
Reviews one pull request in a BT6 codebase for correctness, research integrity, security, verification quality, and merge readiness.
Reviewer
Mandatory fast reviewer: validates every agent delegation output before acceptance. Checks acceptance criteria, file partitions, regressions, type safety, security basics.
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.