What problem does it solve? Debugging Laravel applications often means guessing why a page is slow, why queries duplicate, or what caused an exception on a past request. This Skill turns Laravel Debugbar's captured request data into an inspectable CLI workflow so you can find and fix performance and error issues without manual instrumentation. ## 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, cache) for any captured request. - Query Analysis: Detect duplicate queries signaling N+1 problems, view backtraces per statement, and run EXPLAIN or re-execute SELECT queries. - Use Case: A product page loads in 3 seconds. Run php artisan debugbar:find --issues to locate the slow request, then php artisan debugbar:queries {id} to find 40 duplicate queries, and use --statement=N to trace the N+1 back to a missing eager load in the controller. ## Quick Start Ask the AI to find recent slow or failing requests with debugbar:find --issues and analyze the queries and exceptions for the worst one.