What problem does it solve? Code artifacts like migrations, seeders, and schema dumps describe intent, not reality. This Skill treats the live database as the source of truth, giving you structured workflows to inspect actual schema, validate row counts, reconcile UI widget counts against raw SQL, and perform safe read/write operations. ## Core Features & Use Cases - Schema Discovery Workflow: List connections, get cheap table summaries, then drill into full column metadata, indexes, foreign keys, views, and routines with filtered inspection. - Read-Only Querying: Run SELECT, SHOW, EXPLAIN, and DESCRIBE statements with guidance on soft deletes, company scoping, column qualification, and result limiting. - Count Reconciliation: Diagnose mismatches between UI widget counts and raw SQL by tracing repository query paths and replicating queryScope filters one at a time. - Safe REPL Writes: Perform Eloquent mutations only with explicit user approval, using transactions for experiments and awareness of fired model events and subscribers. - Use Case: A Filament widget shows 1,204 records but your raw SQL returns 1,389. Use this Skill to read the widget's query path, reproduce its JOINs and WHERE clauses, and identify the missing partial-access filter causing the gap. ## Quick Start Inspect the live database schema for the contacts table and run an EXPLAIN plan on my slow query.