agentsclimarketplace

Sqlite schema report

Skill sisodiabhumca/agent-skills/skills/sqlite-schema-report

Vendor-neutral skill to summarize a SQLite database schema (tables, columns, indexes, foreign keys) and emit a portable report.From its SKILL.md

Install
npx -y skills add sisodiabhumca/agent-skills --skill sqlite-schema-report

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

0.9 KB, 162 tokens by cl100k_base, as published. Nobody here has run it

When to invoke

  • You received a SQLite database file and need a quick schema overview.
  • You want to document a local database before migrating or integrating.

Inputs needed

  • --db path to a SQLite database.
  • Optional: --tables comma-separated list of tables (default: all user tables).

Workflow

  1. Open database in read-only mode.
  2. Discover user tables.
  3. For each table, capture columns/types, indexes, and foreign keys.
  4. Emit a JSON report.

Output format

  • JSON written to --output.

Guardrails

  • Read-only: never modify the database.
  • Do not infer semantics beyond the declared schema.

Reference code

  • sqlite_schema_report.py uses Python stdlib sqlite3.

What ships with it: 2 files

3.5 KB alongside SKILL.md, 1 of them executable

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.