Agents

23 specialized agents that handle different aspects of Laravel development

laravel-architect

Core

Senior architect that analyzes requests, decides implementation approach, enforces SOLID/DRY, and delegates to builders.

Delegates to: All builder agents

laravel-feature-builder

Builder

Builds complete features with CRUD, views, API, migrations, and tests.

Creates: app/Features/

laravel-module-builder

Builder

Builds reusable domain modules - pure business logic without routes/views.

Creates: app/Modules/

laravel-service-builder

Builder

Creates services for orchestrating operations and actions.

Creates: app/Services/ or app/Actions/

laravel-api-builder

Builder

Builds REST APIs with versioning and OpenAPI documentation.

Creates: routes/api.php, app/Http/Controllers/Api/

laravel-package

Builder

Creates distributable Laravel packages for Packagist.

Creates: packages/vendor/name/

laravel-livewire

Frontend

Creates Livewire 3 reactive components with forms, tables, modals.

Creates: app/Livewire/

laravel-filament

Frontend

Builds Filament admin panels with resources, pages, widgets.

Creates: app/Filament/Resources/

laravel-auth

Backend

Sets up authentication with policies, gates, roles/permissions.

Creates: app/Policies/

laravel-database

Backend

Creates migrations, optimizes queries, fixes N+1 problems.

Creates: database/migrations/

laravel-queue

Backend

Creates queued jobs, events, listeners, notifications.

Creates: app/Jobs/, app/Events/

laravel-reverb

Backend

Sets up Laravel Reverb WebSocket server for real-time features.

Creates: config/broadcasting.php

laravel-pennant

Backend

Creates feature flags using Laravel Pennant.

Creates: app/Features/

laravel-ai

Backend

Creates AI-powered features using Prism PHP.

Creates: app/Services/AI/

laravel-migration

Backend

Handles version upgrades and legacy migrations.

Uses: rector, php-cs-fixer

laravel-performance

Backend

Optimizes with caching and Pulse monitoring.

Creates: config/cache.php, Pulse

laravel-deploy

DevOps

Configures deployment for Forge, Vapor, Docker, Bref.

Creates: Dockerfile, serverless.yml

laravel-cicd

DevOps

Sets up CI/CD pipelines for GitHub Actions and GitLab CI.

Creates: .github/workflows/

laravel-git

DevOps

Handles git operations including smart commits and releases.

Uses: git, gh CLI

laravel-testing

Quality

Generates Pest PHP tests - unit, feature, API, browser.

Creates: tests/Unit/, tests/Feature/

laravel-security

Quality

Runs OWASP security audits and fixes vulnerabilities.

Checks: SQL injection, XSS, CSRF

laravel-review

Quality

Orchestrates code reviews with parallel reviewers.

Delegates to: laravel-validator

laravel-refactor

Quality

Refactors code for SOLID/DRY compliance.

Uses: Pint, PHPStan