| name | laravel-auditor-development |
| description | Integrate and apply the Laravel Auditor package in Laravel applications: installation, setup, the MCP tools, and the audit workflow. Use when setting up Laravel Auditor or wiring it into a Laravel app.
|
| metadata | {"agent":"any"} |
Laravel Auditor Development
Use this skill when a Laravel application needs to install, configure, or apply the Laravel Auditor package. Auditor does not scan the app. After setup, the user asks their AI agent to use the laravel-audit skill.
Primary goals
- Install Laravel Auditor as a development dependency.
- Run the appropriate setup command (Boost-based or standalone).
- Verify setup with the diagnostics command.
- Use the audit workflow skill to perform an audit.
Workflow
1. Install the package
composer require --dev mrpunyapal/laravel-auditor
2. Set up resources
When Laravel Boost is installed, expose Auditor resources through Boost:
php artisan boost:install
(or php artisan boost:update after package updates).
When Boost is not installed, use the standalone installer:
php artisan auditor:install --agents=claude_code
php artisan auditor:install --agents=claude_code,opencode
The installer is idempotent and safe. It detects the Laravel application context, detects whether Boost is installed, prepares Auditor's agent-facing resources, and reports what it created or updated.
Non-interactive runs resolve agents from --agents, then , then project markers. When none of those resolve, no agents are wired. A directory alone is not treated as Copilot. Pass to refresh Auditor-owned resources, including an existing MCP entry.