This gives Claude direct access to Bun's built-in SQLite driver through bun:sqlite. You get prepared statements, transactions, named and positional parameters, and all the standard query methods (get, all, iterate, values). It covers the full API including WAL mode setup, serialization for backups, type mappings between SQLite and JavaScript, and transaction modes (deferred, immediate, exclusive). The repository pattern example is solid if you're building something beyond quick scripts. Honestly, if you're using Bun and need SQLite, this is just the official API documented cleanly. No ORM overhead, just fast native bindings with proper transaction support.
npx skills add https://github.com/secondsky/claude-skills --skill bun-sqlite