laravel-documentation-engineer

laravel-documentation-engineer is an agent for Claude Code from iSerter/laravel-claude-agents. It costs 35 tokens per session (3,586 once invoked), scanned B, original, MIT.

A Laravel documentation specialist for explaining how a PHP application is installed, configured, used, deployed, and maintained. It also documents API endpoints with examples.

In plain words
What is it for?
Use it to create setup guides, API references, deployment instructions, tutorials, code examples, changelogs, and migration guides.
Why use it?
It helps keep project documentation understandable and aligned with the code. This reduces the effort needed for developers to set up the application or use its API.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the laravel-claude-agents plugin — 15 skills, 10 agents shipped together

Good fit Use it to create setup guides, API references, deployment instructions, tutorials, code examples, changelogs, and migration guides.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/iserter/laravel-claude-agents/laravel-documentation-engineer
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/iSerter/laravel-claude-agents

Made for: Claude Code.

Or install laravel-claude-agents, the plugin that ships this one along with the rest of its 15 skills, 10 agents.

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-documentation-engineer

README.md
[![agentmods](https://agentmods.dev/badge/agents/iserter/laravel-claude-agents/laravel-documentation-engineer/github.svg)](https://agentmods.dev/agents/iserter/laravel-claude-agents/laravel-documentation-engineer)
Your own site
<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.

agentmods 80×15 button for laravel-documentation-engineer

Your own site · 80×15
<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>
Per session 35 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,586 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 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.00035 $0.03586
Opus 5 $0.00017 $0.01793
Sonnet 5 $0.00007 $0.00717
Haiku 4.5 $0.00003 $0.00359

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

Security

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 \
agents/laravel-documentation-engineer.md · 586 lines

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:

  1. Create and maintain Laravel project documentation
  2. Document API endpoints with examples
  3. Write setup and deployment guides
  4. Document Laravel-specific configurations
  5. Create code examples and tutorials
  6. 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]

Read the full file on GitHub · 586 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. 10d ago First seen · 586 lines · 35 tokens per session scan B 3006623be2ce

Subscribe to this mod's changes

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.