sqlite-axi
sqlite-axi is an AXI for SQLite. It opens databases read-only and returns token-efficient TOON. The database is auto-discovered in the current directory or one level down, or passed as a file path / --db.
Works with
Agent Skills format with YAML frontmatter. Claude Code reads it as-is.
--- name: "sqlite-axi" description: "sqlite-axi is an AXI for SQLite. It opens databases read-only and returns token-efficient TOON. The database is auto-discovered in the current directory or one level down, or passed as a file path / --db." license: "MIT" --- # sqlite-axi `sqlite-axi` is an [AXI](https://github.com/kunchenguid/axi) for SQLite. It opens databases **read-only** and returns token-efficient TOON. The database is auto-discovered in the current directory or one level down, or passed as a file path / `--db`. Run without a global install: ```sh npx -y sqlite-axi <command> ``` ## Commands - `sqlite-axi tables [db]` — base tables with row and column counts. - `sqlite-axi schema [db] <table-or-view>` — columns (type, pk, notnull, default), indexes, foreign keys. - `sqlite-axi sample [db] <table-or-view> [--limit 10] [--full]` — preview rows; cells truncate unless `--full`. - `sqlite-axi query [db] "<sql>" [--limit 50] [--full]` — a single read-only query (`SELECT` / `EXPLAIN SELECT` / `EXPLAIN QUERY PLAN SELECT` only). ## Notes - Read-only is enforced two ways: the file is opened with SQLite's read-only flag, and a validator rejects anything but the allowed read statements. - `--limit` flags accept decimal integers and cap at 1000 rows. - Errors are structured TOON on stdout with a `help` line. Exit codes: `0` ok, `1` error, `2` usage/read-only violation. - Unknown table/view → `NOT_FOUND` suggesting `sqlite-axi tables`.
More General & Other skills
find-skills
vercel-labs/skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
grill-me
mattpocock/skills
A relentless interview to sharpen a plan or design.
grill-with-docs
mattpocock/skills
A relentless interview to sharpen a plan or design, which also creates docs (ADR's and glossary) as we go.

