laravel-reviewer

laravel-reviewer is an agent for Claude Code from ypollak2/claude-code-kickstart. It costs 22 tokens per session (368 once invoked), scanned A, original, MIT.

A Laravel and PHP code-review agent focused on database models, security, request validation, queues, performance, and tests.

In plain words
What is it for?
Use it to review Laravel code, including controllers, Eloquent relationships, form requests, API responses, database access, queues, configuration, and feature tests.
Why use it?
It helps find common web-application problems such as unsafe SQL, unvalidated input, inefficient database queries, and missing background jobs.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: model in frontmatter.

Good fit Use it to review Laravel code, including controllers, Eloquent relationships, form requests, API responses, database access, queues, configuration, and feature tests.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/ypollak2/claude-code-kickstart/laravel-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/ypollak2/claude-code-kickstart

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

README.md
[![agentmods](https://agentmods.dev/badge/agents/ypollak2/claude-code-kickstart/laravel-reviewer/github.svg)](https://agentmods.dev/agents/ypollak2/claude-code-kickstart/laravel-reviewer)
Your own site
<a href="https://agentmods.dev/agents/ypollak2/claude-code-kickstart/laravel-reviewer"><img src="https://agentmods.dev/badge/agents/ypollak2/claude-code-kickstart/laravel-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 laravel-reviewer

Your own site · 80×15
<a href="https://agentmods.dev/agents/ypollak2/claude-code-kickstart/laravel-reviewer"><img src="https://agentmods.dev/badge/agents/ypollak2/claude-code-kickstart/laravel-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 22 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 368 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.00022 $0.00368
Opus 5 $0.00011 $0.00184
Sonnet 5 $0.00004 $0.00074
Haiku 4.5 $0.00002 $0.00037

Measured 8d ago against content hash 99ea6b578a0f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

laravel-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 8d 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.

profiles/php/agents/laravel-reviewer.md · 43 lines

What it actually says

You are a Laravel/PHP expert reviewing code for correctness, security, and framework-idiomatic patterns.

Review priorities

  1. Security — Raw SQL without bindings? Mass assignment vulnerabilities? Missing CSRF? Unvalidated input?
  2. Eloquent — N+1 queries? Missing eager loading? Incorrect relationship definitions? Raw queries where Eloquent would work?
  3. Architecture — Business logic in controllers? Missing form request validation? Fat models?
  4. Performance — Missing database indexes? Synchronous tasks that should be queued? Missing caching?
  5. Testing — Missing feature tests for new endpoints? Missing model factories?

Common issues to flag

  • Validation logic in controllers instead of Form Request classes
  • Returning Eloquent models directly instead of using API Resources
  • Missing ->with() eager loading on relationship access in loops
  • $fillable too permissive or using $guarded = []
  • Raw SQL queries with string interpolation (SQL injection risk)
  • Missing authorize() in Form Requests
  • env() calls outside of config files (breaks config caching)
  • Missing queue for emails, notifications, or API calls
  • dd() or dump() left in code

Rules

  • Run php artisan test as part of the review
  • Check composer.json for outdated or unnecessary packages
  • Verify routes have appropriate middleware (auth, throttle)
  • Check that migrations are reversible (have down() methods)
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. 8d ago First seen · 43 lines · 22 tokens per session scan A 99ea6b578a0f

Subscribe to this mod's changes

laravel-reviewer is an agent published in the GitHub repository ypollak2/claude-code-kickstart (2 stars, last pushed 5mo ago), licensed MIT. It adds 22 tokens to every session and 368 once invoked, about $0.0001 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

ring:backend-go

Senior Backend Engineer specialized in Go for high-demand financial systems. Handles API development, microservices, databases, message queues, and business logic implementation.

LerianStudio/ring · 34 tokens

ring:backend-ts

Senior Backend Engineer specialized in TypeScript/Node.js for scalable systems. Handles API development with Express/Fastify/NestJS, databases with Prisma/Drizzle, and type-safe architecture.

LerianStudio/ring · 43 tokens

ring:bff-ts

Senior BFF (Backend for Frontend) Engineer specialized in Next.js API Routes with Clean Architecture, DDD, and Hexagonal patterns. Builds type-safe API layers that aggregate and transform data for frontend consumption.

LerianStudio/ring · 47 tokens

atomic-reviewer

Diff / branch / file reviewer with two modes. Code-mode (default): reviews a diff against a spec, verifies TDD signals were actually run. Spec-mode: reviews a draft spec for alignment with its design doc, coverage, voice, and over-prescription. One line per finding, severity-tagged, no praise, no scope creep. Output…

damusix/atomic-claude · 127 tokens

ring:streaming-reviewer

Conditional Gate 8 specialist for lib-streaming, business events, outbox, event producers, broker publishing, CloudEvents, and event manifests/catalogs.

LerianStudio/ring · 38 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