The Deterministic AI Database Context Compiler for Claude Code, Cursor, Windsurf, Codex, and Copilot.
Modern AI coding agents (Claude Code, Cursor, GitHub Copilot, Codex) struggle with production databases:
- Raw
pg_dumpSQL dumps waste 10,000+ tokens of precious context window. - Cluttered DDL dumps introduce noisy system metadata and lock definitions.
- LLMs hallucinate non-existent foreign keys (e.g. guessing
orders.customer_idwhen the column isorders.user_id), creating broken multi-tableJOINs.
Schemap solves this. Schemap is a high-speed CLI compiler that introspects your database, computes an AI Readiness Score, and outputs clean, token-optimized context maps (schemap_database_context.md, CLAUDE.md, AGENTS.md).
Measured using OpenAI tiktoken (cl100k_base / o200k_base across Claude Opus 5, GPT-5.6 Terra, Gemini 3.7, and Claude 3.7). Full methodology and reproduction in BENCHMARKS.md.
| Database Schema | Tables | Raw SQL Dump (pg_dump) |
Schemap Context | CLAUDE.md Rules |
Token Reduction | Compiler Latency |
|---|---|---|---|---|---|---|
| Chinook | 11 | 995 tokens | 536 tokens | 953 tokens | 46.1% | 0.92 ms |
| Northwind | 13 | 1,045 tokens | 590 tokens | 999 tokens | 43.5% | 1.05 ms |
| Pagila (Postgres) | 15 | 1,222 tokens | 673 tokens | 1,054 tokens | 44.9% | 1.20 ms |
| SaaS E-Commerce | 30 | 2,446 tokens | 516 tokens | 834 tokens | 78.9% | 1.77 ms |
| Enterprise Scale | 100 | 8,577 tokens | 921 tokens | 1,496 tokens | 89.3% | 5.27 ms |
| Model | Provider | Input Pricing | Tokens Saved / Task | Annual Savings (5-Dev Team) |
|---|---|---|---|---|
| Claude Opus 5 | Anthropic | $15.00 / 1M |
153,120 tokens | $6,063.55 / yr |
| GPT-5.6 Terra | OpenAI | $10.00 / 1M |
153,120 tokens | $4,042.37 / yr |
| Gemini 3.7 Pro | $3.50 / 1M |
153,120 tokens | $1,414.83 / yr | |
| Claude 3.7 Sonnet | Anthropic | $3.00 / 1M |
153,120 tokens | $1,212.71 / yr |
| Evaluation Mode | Execution Pass Rate | Foreign Key JOIN Accuracy | Hallucination Rate |
|---|---|---|---|
| Zero Context (Blind Guess) | 0.0% | 0.0% | 100.0% |
Raw DDL Dump (pg_dump) |
88.9% | 88.9% | 11.1% |
| Schemap Compiled Context | 100.0% | 100.0% | 0.0% |
| Database Scale | Mean Latency | Median (p50) | Peak RAM | Pre-Commit Overhead |
|---|---|---|---|---|
| 10 Tables | 0.52 ms |
0.52 ms |
17.7 KB |
Imperceptible ( |
| 50 Tables | 2.11 ms |
2.08 ms |
47.6 KB |
Imperceptible ( |
| 100 Tables | 3.61 ms |
3.60 ms |
76.4 KB |
Instant ( |
| 1,000 Tables | 43.15 ms |
43.09 ms |
777.7 KB |
Ultra-fast ( |
π¬ Reproduce All Benchmarks: Run
uv run python benchmarks/tier1_token_benchmark.pyor inspect full test methodologies in BENCHMARKS.md.
Using uvx:
uvx schemap-tool doctor --db "sqlite:///app.db"Or install globally via pipx (recommended) or uv / pip:
pipx install schemap-toolAlternative installs:
uv tool install schemap-toolpip install schemap-tool
Audit your database schema for AI compatibility, missing foreign keys, and ambiguous naming:
schemap doctor==================================================
Schemap AI Database Health Check
==================================================
Connection: Connected (39 tables)
Relationships Analyzed: 26
--------------------------------------------------
AI Readiness Score:
[################----] 82/100
Top Diagnostic Insights:
- [High] 4 tables lack explicit foreign key constraints (-10 pts)
- [Med] 12 column names contain ambiguous abbreviations (-8 pts)
--------------------------------------------------
Recommendation: Run `schemap context` to compile AI-ready database context.
==================================================
Compile a clean, token-compressed markdown context file (schemap_database_context.md):
schemap contextGenerate native instruction files for Claude Code (CLAUDE.md), Cursor (.cursorrules), and AI agents (AGENTS.md):
schemap agentsMeasure real-time token compression and compilation speed on your own schema:
schemap benchmarkflowchart LR
A[(PostgreSQL / MySQL / SQLite / Turso / Oracle)] -->|schemap extract| B(Schemap Engine)
B -->|Score & Graph| C{Deterministic Compiler}
C -->|CLAUDE.md| D[Claude Code]
C -->|AGENTS.md / .cursorrules| E[Cursor & Windsurf]
C -->|schemap_database_context.md| F[Copilot / Codex / Prompts]
- Introspect: Extracts table structure, column types, primary keys, and foreign keys locally.
- Analyze & Score: Evaluates schema clarity, identifies central entities, and computes an AI Readiness Score (0β100).
- Compile: Generates structured, token-efficient markdown context and native rule files for your coding assistants.
- π 100% Local-First & Air-Gapped: Your database credentials, data rows, and schema metadata never leave your machine.
- β‘ Sub-3ms Compiler Speed: Compiles schemas with 200+ tables in milliseconds.
- π§ AI Readiness Score (0β100): Pinpoint orphan tables, missing relationships, and abbreviation ambiguities before your AI agent hallucinates.
- π€ Multi-Agent Workspace Sync: Instantly creates
CLAUDE.md,AGENTS.md, and.cursorruleswith one command. - π Git Hooks & Watch Mode: Auto-recompile context on migration commits (
schemap hook installorschemap watch). - π§© Agent Framework Export: Export schema definitions directly as JSON or code for LangChain, LlamaIndex, and Pydantic (
schemap export).
| Command | Purpose | JSON Output Flag |
|---|---|---|
schemap doctor |
Run onboarding health check & schema diagnostic | schemap doctor --json |
schemap context |
Compile schemap_database_context.md context map |
schemap context --format=json |
schemap agents |
Generate CLAUDE.md, AGENTS.md, and agent rules |
N/A |
schemap benchmark |
Measure raw SQL vs. Schemap token savings & speed | schemap benchmark --json |
schemap score |
Calculate AI Readiness Score (0β100) & improvement roadmap | schemap score --json |
schemap explain |
Explain table architecture, columns, and relationships | schemap explain <table_name> |
schemap join |
Find foreign key join paths and generate SQL snippets | schemap join <table> <table> |
schemap diff |
Track structural schema changes (+, ~, -) |
N/A |
schemap export |
Export schema as JSON or code for Agent Frameworks | schemap export --format=json |
schemap hook |
Install/manage Git pre-commit hooks for auto-compilation | schemap hook install |
schemap watch |
Watch directory for changes and auto-regenerate context | N/A |
- PostgreSQL (
postgresql://user:password@localhost:5432/my_db) - MySQL (
mysql://user:password@localhost:3306/my_db) - SQLite (
sqlite:///path/to/db.sqlite3) - Turso / Remote libSQL (
libsql://[your-db].turso.io?authToken=[token]) - Oracle (
oracle://user:password@localhost:1521/my_db)
Initialize a lightweight configuration file in your project root:
schemap initExample schemap.yaml:
database:
connection_url: "sqlite:///app.db"
output:
file_path: "./schemap_database_context.md"
domain:
mappings:
cust: "Customer"
tx: "Transaction"
inv: "Invoice"
acct: "Account"For full boilerplate options (table exclusions, descriptions, custom profiles):
schemap init --fullKeep your AI context maps up to date automatically on every migration commit:
name: Update Schemap Context
on:
push:
branches: [main]
paths:
- 'migrations/**'
- 'alembic/versions/**'
- 'prisma/schema.prisma'
jobs:
update-schema-map:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Compile Schemap Context
env:
SCHEMAP_LICENSE_KEY: ${{ secrets.SCHEMAP_LICENSE_KEY }}
run: uvx schemap-tool context
- name: Commit and Push Updated Context
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add schemap_database_context.md CLAUDE.md AGENTS.md
git diff --quiet && git diff --staged --quiet || (git commit -m "docs: auto-update AI database context" && git push)- Free Tier: Full local CLI for databases up to 100 tables, including diagnostics, scoring, context compilation, diffs, benchmarks, and exports.
- Pro Tier: Unlimited tables, team seat management, CI/CD automated workflows, and production support.
# Activate a Pro license key
schemap activate <LICENSE_KEY>
# Verify active license status & device seats
schemap status --verify
# Deactivate device / logout
schemap logoutBuilt with β€οΈ for the AI developer community.
Website β’ Documentation β’ Issues & Support