What problem does it solve?
This Skill provides zero-install, pre-bundled Bun SQL scripts that let you inspect database schemas, run parameterized queries, and modify data without a separate setup. It supports PostgreSQL, MySQL, and SQLite, enabling quick automation or ad-hoc data exploration directly in your project.
Core Features & Use Cases
- Schema inspection: list tables, describe structures, and reveal relationships across supported databases.
- Querying: execute safe SELECT queries with parameterization, supporting filters, joins, and aggregations.
- Data modification: perform INSERT/UPDATE/DELETE with a safety flag to guard write operations.
- Interactive and scriptable: use in interactive mode or embed in automation pipelines.
- Zero-install distribution: works immediately after download by reading DATABASE_URL from your project’s .env file.
Quick Start
- Install by downloading the bundled distribution; place it in your Claude skills directory.
- Create a .env file with DATABASE_URL for your target database.
- Run a bundled script, e.g. bun ~/.claude/skills/bun-sql-query/dist/schema.js --list-tables to explore your database.