What problem does it solve?
This Skill helps you answer data questions by running read-only SQL against MySQL or MariaDB instances configured in your .env, without manually handling database drivers, connection setup, or result parsing.
Core Features & Use Cases
- Query MySQL/MariaDB from .env: Select a connection by human label (or numeric index) and execute a single SQL statement.
- Read-only guardrails: Write verbs are refused unless DB_MYSQL_N_ALLOW_WRITE=true is explicitly enabled for that connection block.
- Practical exploration tools: List tables and describe table schemas to help form correct queries.
Use case: You need to audit how many new customers were created in the last 7 days and quickly inspect the columns for a relevant table; run a count query, then describe the table to verify column names and types.
Quick Start
Ask your AI to run a read-only query: "Query the orders-dev MySQL database for the number of customers created in the last 7 days."