Download the PHP package dakshraman/laravel-ai-debugger without Composer
On this page you can find all versions of the php package dakshraman/laravel-ai-debugger. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package laravel-ai-debugger
laravel-ai-debugger
A local-first AI debugging assistant for Laravel using CLI tools like Claude, Gemini CLI, GitHub Copilot, and OpenAI Codex. Zero API cost — everything runs through your locally installed CLI tools.
Features
- ✅ Local AI-powered error analysis (no API key required)
- ✅ Works with Claude, Gemini CLI, GitHub Copilot, and OpenAI Codex
- ✅ Plug-and-play Laravel package with auto-discovery
- ✅ Artisan command:
php artisan debug:analyze - ✅ Facade for inline usage:
AIDebugger::analyze($trace) - ✅ Extensible driver system
Requirements
- PHP 8.1+
- Laravel 10, 11, or 12
- One of the following CLI tools installed and in your
$PATH:- claude — Anthropic Claude CLI
- gemini — Google Gemini CLI
- gh copilot — GitHub Copilot CLI
- codex — OpenAI Codex CLI
Installation
The service provider and facade are registered automatically via Laravel's package auto-discovery.
Publish the config file
This publishes config/ai-debugger.php.
Configuration
Set your preferred AI driver in .env:
Or edit config/ai-debugger.php directly:
Usage
Artisan Command
Analyze your Laravel log file:
Point to a specific log file:
Facade
Auto-hook (Optional)
Register in your AppServiceProvider to automatically analyze every reported exception:
Extending with a Custom Driver
Implement Dakshraman\AIDebugger\AI\AIInterface:
Then bind it in a service provider or extend AIDriverManager.
License
MIT
All versions of laravel-ai-debugger with dependencies
illuminate/support Version ^10.0|^11.0|^12.0
illuminate/console Version ^10.0|^11.0|^12.0