sqlite-map-parser

Parse SQLite databases into structured JSON with schema and foreign-key resolution.

Updated Jan 15, 2026
One-click install
npx skills add https://github.com/KaiserWhoLearns/skillsbench --skill sqlite-map-parser
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sqlite-map-parser
Source: https://github.com/KaiserWhoLearns/skillsbench/tree/main/tasks/civ6-adjacency-optimizer/environment/skills/sqlite-map-parser
Command: npx skills add https://github.com/KaiserWhoLearns/skillsbench --skill sqlite-map-parser

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Parse SQLite databases into structured JSON data to help you explore unknown schemas, understand table relationships, and extract usable data representations.

Core Features & Use Cases

  • Schema exploration: list tables, inspect columns, and retrieve table definitions to reveal the database structure.
  • Relationship mapping: identify foreign keys and join related tables to build coherent, connected data graphs.
  • Data extraction and JSON output: convert schema and records into a structured JSON object for downstream processing and analytics.

Quick Start

Provide a path to a SQLite database and run the parser to generate a JSON representation of its schema and data.

Frequently Asked Questions about sqlite-map-parser

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I convert a SQLite database schema to JSON?

To convert a SQLite database schema to JSON, you can use a parser that applies schema inspection to extract tables, columns, and definitions, generating a structured JSON representation of the database for downstream processing.

How can I extract table relationships and foreign keys from SQLite?

You can extract table relationships and foreign keys from SQLite by running a parser that identifies foreign keys and joins related tables to build a coherent, connected data graph in JSON format.

What is the best way to explore an unknown SQLite database schema?

The best way to explore an unknown SQLite database schema is using an automated parser to list tables, inspect columns, and retrieve table definitions, revealing the structure without manual querying.

Can I parse SQLite databases with missing tables into JSON?

Yes, you can parse SQLite databases with missing tables into JSON, as the parser implements robust handling for missing tables and provides clear error messages during schema discovery.

Do I need Python to extract SQLite schema metadata into JSON?

You need Python with the built-in sqlite3 module to extract SQLite schema metadata into JSON, as the parser relies on this environment to implement schema inspection and foreign-key resolution.