Sqlite schema report
Skill sisodiabhumca/agent-skills/skills/sqlite-schema-report
Production-Ready Agent Skills : product analytics, growth experiments, CRM, research synthesis, postmortems, data contracts, SaaS spend, compliance, architecture maps, and LLM eval and many more.
npx -y skills add sisodiabhumca/agent-skills --skill sqlite-schema-reportAssembled 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.
What its author says it does
Copied from the file, not written here
Vendor-neutral skill to summarize a SQLite database schema (tables, columns, indexes, foreign keys) and emit a portable report.
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
--dbpath to a SQLite database.- Optional:
--tablescomma-separated list of tables (default: all user tables).
Workflow
- Open database in read-only mode.
- Discover user tables.
- For each table, capture columns/types, indexes, and foreign keys.
- 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.pyuses Python stdlibsqlite3.
What ships with it: 2 files
3.5 KB alongside SKILL.md, 1 of them executable
- README.md386 B
- sqlite_schema_report.pyruns3.1 KB