What problem does it solve? Debugging Laravel performance issues and errors often means digging through logs or reproducing requests manually. This Skill lets you inspect requests already captured by Laravel Debugbar directly from the terminal, surfacing slow pages, duplicate queries, and exceptions without opening a browser. ## Core Features & Use Cases - Request Discovery: List recent requests and filter by URI, HTTP method, or issue flags such as exceptions, slow queries, and high query counts. - Collector Inspection: Drill into specific Debugbar collectors (exceptions, queries, time, auth, gate, cache) for any captured request. - Query Analysis: Detect duplicate queries signaling N+1 problems, view backtraces for individual statements, and run EXPLAIN plans or re-execute SELECT queries. - Use Case: A page suddenly loads slowly. Run php artisan debugbar:find --issues to spot the slow request, then php artisan debugbar:queries {id} to find duplicate queries, and use --statement=N to trace the offending query back to its source code. ## Quick Start Ask the AI to find recent requests with issues using the debugbar Artisan commands and identify any slow queries or exceptions.