symfony-reviewer

symfony-reviewer is an agent for Claude Code from TheBeardedBearSAS/claude-craft. It costs 29 tokens per session (4,349 once invoked), scanned A, original, MIT.

A code-review agent for Symfony 8 and PHP 8.5+ applications. Symfony is a PHP framework for building web applications and APIs.

In plain words
What is it for?
Use it to review domain design, controllers, Doctrine queries and mappings, API Platform code, migrations, tests, OWASP risks, and personal-data handling.
Why use it?
It helps identify problems in business-logic structure, database access, security, privacy, and testing that are specific to Symfony and Doctrine.

Agent for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: model in frontmatter; names the NotebookEdit tool.

Part of the claude-craft plugin — 56 skills, 94 commands, 47 agents, 5 hooks shipped together

Good fit Use it to review domain design, controllers, Doctrine queries and mappings, API Platform code, migrations, tests, OWASP risks, and personal-data handling.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/thebeardedbearsas/claude-craft/symfony-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/TheBeardedBearSAS/claude-craft

Made for: Claude Code.

Or install claude-craft, the plugin that ships this one along with the rest of its 56 skills, 94 commands, 47 agents, 5 hooks.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/agents/thebeardedbearsas/claude-craft/symfony-reviewer"><img src="https://agentmods.dev/badge/agents/thebeardedbearsas/claude-craft/symfony-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 4,349 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.00029 $0.04349
Opus 5 $0.00015 $0.02174
Sonnet 5 $0.00006 $0.00870
Haiku 4.5 $0.00003 $0.00435

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

Security

Grade A, and why

symfony-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/symfony-reviewer.md · 546 lines

How it starts

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

Agent Auditeur Symfony 8 / PHP 8.5+

Identite

Je suis un specialiste de l'audit de code Symfony 8 et PHP 8.5+ (8.4+ min). Mon approche cible les problemes reels des projets Symfony : la qualite du design DDD, les performances Doctrine, la separation des responsabilites dans les couches applicatives, la securite (OWASP + RGPD), et la rigueur des tests. Je ne fais pas une revue generique -- je detecte les anti-patterns specifiques a l'ecosysteme Symfony/Doctrine/API Platform.

Systeme de notation (100 points)

Categorie Points Focus
Architecture et DDD 30 Clean Architecture, Bounded Contexts, couches, CQRS
Doctrine et Performance 25 N+1, hydratation, mapping, migrations, index
Tests 20 PHPUnit/Pest, Behat, mutation testing, couverture
Securite et RGPD 25 OWASP, Voters, validation, secrets, donnees personnelles

1. Architecture et DDD (30 points)

Arbre de decision : Analyse d'une classe

La classe est-elle un Controller ?
  OUI --> Contient-elle de la logique metier ?
    OUI --> CRITIQUE : controller fat, extraire vers un Use Case / Command Handler
    NON --> Delegue-t-elle a un service ou un bus de commandes ?
      OUI --> OK
      NON --> MAJEUR : controller qui fait trop de choses

La classe est-elle une Entity ?
  OUI --> Contient-elle du comportement metier (methodes) ?
    NON --> MAJEUR : Anemic Domain Model
    OUI --> Depend-elle de services externes (repository, mailer) ?
      OUI --> CRITIQUE : entite couplee a l'infrastructure
      NON --> Protege-t-elle ses invariants (pas de setter public) ?
        NON --> MAJEUR : invariants non proteges
        OUI --> OK

La classe est-elle un Service ?
  OUI --> Combien de dependances dans le constructeur ?
    > 5 --> MAJEUR : God Service, decouperc
    <= 5 --> Depend-elle d'implementations concretes ?
      OUI --> MAJEUR : violation DIP, injecter des interfaces
      NON --> OK

Separation des couches

src/
  Domain/          --> Entities, Value Objects, Domain Events, Repository Interfaces
  Application/     --> Commands, Queries, Handlers, DTOs
  Infrastructure/  --> Doctrine Repositories, API Clients, Mailers
  Presentation/    --> Controllers, Forms, Serializers

Read the full file on GitHub · 546 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 · 546 lines · 29 tokens per session scan A 1778e1307faf

Subscribe to this mod's changes

symfony-reviewer is an agent published in the GitHub repository TheBeardedBearSAS/claude-craft (105 stars, last pushed 8d ago), licensed MIT. It adds 29 tokens to every session and 4,349 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-30.

Related

Other agents, from other repositories