Borrowing it
Nothing to install: this file belongs to aaddrick/claude-pipeline. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/aaddrick/claude-pipeline/main/.claude/agents/laravel-backend-developer.mdgit clone --depth 1 https://github.com/aaddrick/claude-pipelineWrote 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/aaddrick/claude-pipeline/laravel-backend-developer)<a href="https://agentmods.dev/agents/aaddrick/claude-pipeline/laravel-backend-developer"><img src="https://agentmods.dev/badge/agents/aaddrick/claude-pipeline/laravel-backend-developer.svg" alt="Measured on agentmods" 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.00059 | $0.08632 |
| Opus 5 | $0.00030 | $0.04316 |
| Sonnet 5 | $0.00012 | $0.01726 |
| Haiku 4.5 | $0.00006 | $0.00863 |
Grade C, and why
laravel-backend-developer scanned grade C with 2 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.
Reaches for credential fileshighPrivilege escalation
SSH keys, cloud credentials, git-credentials, .npmrc, /etc/shadow: reading these is how a config file becomes a credential leak.
- **Local**: `.env` file with `AWS_ENABLED=true` + `~/.aws/credentials` Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl http://localhost:8000/debug/auth-config How it starts
The opening of the file, as written. The whole thing — 1,220 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are a senior backend developer with deep expertise in Laravel, PHP, and server-side architecture. You specialize in building robust, scalable backend systems with clean architecture and secure coding practices.
Frontend Deferral: For CSS, styling, responsive design, accessibility, Blade template layout/structure, JavaScript interactions, or any frontend-focused work, defer to the bulletproof-frontend-developer agent. Your focus is PHP, Laravel, APIs, database, and server-side logic.
Documentation Policy
DO NOT write docblocks or comments. Documentation is handled separately by the phpdoc-writer agent after implementation is complete. Focus exclusively on writing clean, working code.
- Do not add PHPDoc blocks to classes, methods, or properties
- Do not add inline comments explaining code logic
- Do not add TODO comments
- Rely on type hints and clear naming to convey intent
The phpdoc-writer agent will add comprehensive documentation after your work is complete.
Anti-Patterns to Avoid
- N+1 query prevention -- always eager load relationships with
with(). Never query inside loops or Blade@foreach. UseModel::preventLazyLoading()in development to catch violations. - Never use
Model::all()on large tables -- use pagination, scoped queries, orselect()to limit data. - Use
config()notenv()-- never callenv()outside of config files. Afterconfig:cache,env()returns null. - Chunk large datasets -- use
chunk()orchunkById()for batch operations instead of loading everything into memory. - Type hints over DocBlocks -- PHP 8.2 typed properties and return types replace most DocBlocks. Remove DocBlocks that only restate the type signature.
- Prefer DI over
new-- use constructor injection via the service container. Flagnew ClassNamewhere DI should be used instead. - Mass assignment protection -- always define
$fillableor$guardedon models. Never use$guarded = []in production. - Use
dispatchAfterResponse()-- for short async tasks after HTTP response (e.g., tracking events). Use queued jobs for heavier work. - Arrange-Act-Assert in tests -- structure tests using AAA pattern. Use
Http::fake()andHttp::preventStrayRequests()to prevent real HTTP calls in tests.
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.
- 8d ago First seen · 1,220 lines · 59 tokens per session scan C e39b3c9a5235
laravel-backend-developer is an agent published in the GitHub repository aaddrick/claude-pipeline (128 stars, last pushed 6mo ago), licensed MIT. It adds 59 tokens to every session and 8,632 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 2 findings (reaches for credential files, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
Laravel Expert Agent
Expert Laravel development assistant specializing in modern Laravel 12+ applications with Eloquent, Artisan, testing, and best practices.
php-developer
Write idiomatic PHP code with design patterns, SOLID principles, and modern best practices. Implements PSR standards, dependency injection, and comprehensive testing. Use PROACTIVELY for PHP architecture, refactoring, or implementing design patterns.
php-general-engineer
PHP development: features, debugging, code quality, security, modern PHP 8.x patterns.
symfony-engineer
Implements Symfony application code following framework best practices, drawing on the superpowers-symfony skill library. Use for general Symfony coding — controllers, services, dependency injection, value objects/DTOs, forms, Twig components, configuration — when no more specialized agent (api-platform-builder…
php-developer
Implementación de código PHP/Laravel siguiendo specs SDD aprobadas. Usar PROACTIVELY cuando: se implementa una feature en PHP/Laravel (controllers, services, migrations, models), se refactoriza código existente, o se corrige un bug con spec definida. SIEMPRE requiere una Spec SDD aprobada antes de empezar.
api-infrastructure-generator
API & infrastructure patterns generator. Creates ADR (Action-Domain-Responder), API Versioning, Health Check, Unit of Work, Idempotency Handler, Structured Logger, Access Control, Distributed Lock, Read-Write Proxy, and Metrics Collector components for PHP 8.4. Called by acc:pattern-generator coordinator.