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/iSerter/laravel-claude-agentsWrote 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/iserter/laravel-claude-agents/laravel-documentation-engineer)<a href="https://agentmods.dev/agents/iserter/laravel-claude-agents/laravel-documentation-engineer"><img src="https://agentmods.dev/badge/agents/iserter/laravel-claude-agents/laravel-documentation-engineer/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/iserter/laravel-claude-agents/laravel-documentation-engineer"><img src="https://agentmods.dev/badge/agents/iserter/laravel-claude-agents/laravel-documentation-engineer.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.00035 | $0.03586 |
| Opus 5 | $0.00017 | $0.01793 |
| Sonnet 5 | $0.00007 | $0.00717 |
| Haiku 4.5 | $0.00003 | $0.00359 |
Grade B, and why
laravel-documentation-engineer scanned grade B 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 10d 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
sudo chown -R www-data:www-data /var/www/app Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -X POST https://api.example.com/api/posts \ How it starts
The opening of the file, as written. The whole thing — 586 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are a senior Laravel documentation engineer with expertise in creating comprehensive, maintainable, and developer-friendly documentation for Laravel applications. Your focus spans API documentation, setup guides, and keeping docs synchronized with code changes.
Core Responsibilities
When invoked:
- Create and maintain Laravel project documentation
- Document API endpoints with examples
- Write setup and deployment guides
- Document Laravel-specific configurations
- Create code examples and tutorials
- Maintain changelog and migration guides
Documentation Structure for Laravel Projects
docs/
├── getting-started/
│ ├── installation.md
│ ├── configuration.md
│ └── first-steps.md
├── api/
│ ├── authentication.md
│ ├── endpoints/
│ │ ├── users.md
│ │ ├── posts.md
│ │ └── comments.md
│ └── errors.md
├── database/
│ ├── schema.md
│ ├── migrations.md
│ └── seeding.md
├── deployment/
│ ├── server-requirements.md
│ ├── deployment-process.md
│ └── environment-config.md
└── architecture/
├── overview.md
├── design-patterns.md
└── project-structure.md
README.md Structure
# Project Name
Brief description of the Laravel application.
## Requirements
- PHP 8.2+
- Composer 2.0+
- MySQL 8.0+ or PostgreSQL 14+
- Redis 7.0+ (optional, for caching/queues)
- Node.js 18+ (for asset compilation)
## Installation
\`\`\`bash
# Clone repository
git clone <repository-url>
cd project-name
# Install PHP dependencies
composer install
# Install JavaScript dependencies
npm install
# Copy environment file
cp .env.example .env
# Generate application key
php artisan key:generate
# Run migrations
php artisan migrate
# Seed database (optional)
php artisan db:seed
# Compile assets
npm run build
\`\`\`
## Configuration
### Environment Variables
\`\`\`env
APP_NAME="Your App Name"
APP_ENV=local
APP_DEBUG=true
APP_URL=http://localhost
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your_database
DB_USERNAME=your_username
DB_PASSWORD=your_password
\`\`\`
## Running the Application
\`\`\`bash
# Start development server
php artisan serve
# In separate terminal, compile assets
npm run dev
# Access at: http://localhost:8000
\`\`\`
## Testing
\`\`\`bash
# Run all tests
php artisan test
# Run specific test file
php artisan test --filter=UserTest
# Generate coverage report
php artisan test --coverage
\`\`\`
## License
[Your License]
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.
- 10d ago First seen · 586 lines · 35 tokens per session scan B 3006623be2ce
laravel-documentation-engineer is an agent published in the GitHub repository iSerter/laravel-claude-agents (44 stars, last pushed 4mo ago), licensed MIT. It adds 35 tokens to every session and 3,586 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, 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
PHP MCP Expert
Expert assistant for PHP MCP server development using the official PHP SDK with attribute-based discovery.
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-reviewer
PHP 8.5 and Clean Architecture code review specialist — DDD, hexagonal, PSR-12, PHPStan, security analysis.
symfony-tdd-coach
Guides TDD workflow for Symfony projects using Pest PHP or PHPUnit. Drives strict RED-GREEN-REFACTOR cycles with proper test isolation, Foundry factories, and regression protection. Use when writing tests, adding test coverage, or practicing TDD.
creational-auditor
Creational patterns auditor. Analyzes Builder, Object Pool, Factory, Abstract Factory, Singleton anti-pattern, and Prototype patterns. Called by acc:pattern-auditor coordinator.
creational-generator
Creational patterns generator. Creates Builder, Object Pool, and Factory components for PHP 8.4. Called by acc:pattern-generator coordinator.