eloquage / laravel-actions-boost
Laravel Actions Boost planning guidelines for AI agents.
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Language:Blade
pkg:composer/eloquage/laravel-actions-boost
Requires
- filament/support: ^5.0
- laravel/boost: ^1.8
This package is auto-updated.
Last update: 2026-01-22 02:22:04 UTC
README
A Laravel Boost extension that helps AI agents produce accurate, detailed implementation plans for applications using Lorisleiva Laravel Actions (2.x).
Setup
Install Laravel Actions Boost using Composer:
composer require eloquage/laravel-actions-boost --dev
Then run the Boost installer and select Laravel Actions Boost when prompted:
php artisan boost:install
To verify installation, check your AGENTS.md, CLAUDE.md, or similar file for
a new Laravel Actions Boost section.
Usage
- Enable planning mode in your AI agent (Claude Code, Cursor, etc.)
- Ask the agent to create a Laravel Actions Boost plan for your feature
Example prompt:
Create a Laravel Actions Boost plan for a user management feature.
Users can update their password via a web form (controller) and admins can
reset any user's password via an Artisan command. The same UpdateUserPassword
action should handle both. Use ActionRequest for validation (current password,
new password, confirmation). Add middleware auth for the route. Include tests
that mock the action and assert validation/authorization failures.
The agent will produce a detailed specification document ready for direct implementation, no guessing required.
What's Included
Laravel Actions Boost provides comprehensive planning guides covering:
- Action concept, handle, make/run, conventions, decorators
- Running as object, controller, command, job, listener
- Mocking and testing (mock, spy, assertPushed)
- Granular traits and WithAttributes / unified attributes
- Validation, authorization, ActionRequest
- Route registration, dispatch jobs, listen for events, execute as commands
- Checklist and troubleshooting
License
MIT. Please see the license file for more information.