sqlite

Installation
SKILL.md

SQLite

sqlite3 CLI Basics

sqlite3 myapp.db                    # open or create a database
sqlite3 :memory:                    # in-memory database
sqlite3 myapp.db ".tables"          # one-shot command
sqlite3 myapp.db < schema.sql       # run SQL from file

Common dot-commands inside the shell:

Installs
3
GitHub Stars
3
First Seen
Apr 14, 2026
sqlite — 1mangesh1/dev-skills-collection