Skip to main content

SQLsaber - Open-source agentic SQL assistant

Project description

SQLsaber

SQLsaber is an open-source agentic SQL assistant. Think Claude Code but for SQL.

Ask questions about your data in plain English. SQLsaber writes SQL queries, executes them, and explains the results.

demo

SQLsaber reads your schema, writes SQL, executes it, and explains the results—all from a single natural language prompt.

$ saber "How many orders were placed last month?"

# SQLsaber will:
# 1. Discover relevant tables (orders, order_items, etc.)
# 2. Analyze their schema
# 3. Generate and run SQL
# 4. Return results with explanation

Why SQLsaber?

  • No context switching — Stay in your terminal, ask questions, get answers
  • Schema-aware — Automatically introspects your database; no manual setup
  • Safe by default — Read-only queries; won't modify your data
  • Works with your stack — PostgreSQL, MySQL, SQLite, DuckDB, and CSV files

Install

# Recommended
uv tool install sqlsaber

# Or with pipx
pipx install sqlsaber

Then run:

saber

On first launch, SQLsaber walks you through connecting a database and setting up authentication.

Quick Examples

# Interactive mode
saber

# Single query
saber "show me users who signed up this week"

# Pipe from stdin
echo "top 10 customers by revenue" | saber

# Use a specific database
saber -d mydb "count active subscriptions"

Features

Feature Description
Schema introspection Discovers tables, columns, and relationships automatically
Conversation memory Add context like "dates are stored as Unix timestamps"
Structured knowledge base Store searchable KPI definitions, SQL patterns, and domain notes per database
Thread history Resume past conversations with saber threads resume
Extended thinking Enable --thinking for complex analytical queries
Multiple AI providers Anthropic, OpenAI, Google, Groq (Claude Opus 4.5 by default)

Configuration

Add a database

saber db add mydb
# Prompts for connection details

Or pass a connection string directly:

saber -d "postgresql://user:pass@localhost:5432/mydb" "count users"

Change AI model

saber models set

Add memory (context for your database)

saber memory add "customer_id in orders table references users.id"
saber memory add "all timestamps are UTC"

Add knowledge (searchable KPI/query references)

# Add a structured knowledge entry
saber knowledge add "Revenue KPI" "Recognized revenue from shipped orders only" --sql "SELECT SUM(amount) FROM orders WHERE status = 'shipped'" --source "finance-wiki"

# Long description/SQL from files
saber knowledge add "Revenue definition" "$(cat ./knowledge/revenue_definition.md)" --sql "$(cat ./sql/revenue.sql)"

# Search saved knowledge
saber knowledge search "revenue shipped orders"

How It Works

  1. Discovery — Lists tables and identifies relevant ones based on your question
  2. Schema analysis — Introspects only the tables needed
  3. Query generation — Writes SQL tailored to your database dialect
  4. Execution — Runs read-only queries with safety checks
  5. Results — Formats output with explanations

Documentation

Full docs at sqlsaber.com:

Contributing

Contributions welcome! Please open an issue first to discuss changes.

If you find SQLsaber useful, a ⭐ on GitHub helps others discover it.

License

Apache-2.0 — see LICENSE

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sqlsaber-0.61.0.tar.gz (8.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sqlsaber-0.61.0-py3-none-any.whl (153.7 kB view details)

Uploaded Python 3

File details

Details for the file sqlsaber-0.61.0.tar.gz.

File metadata

  • Download URL: sqlsaber-0.61.0.tar.gz
  • Upload date:
  • Size: 8.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.6 {"installer":{"name":"uv","version":"0.10.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sqlsaber-0.61.0.tar.gz
Algorithm Hash digest
SHA256 79a1e226b8e5d54a04403c5731f19d99676cac8c54fe292aed2a5c0789abc353
MD5 efd5611160ffb7a6ea13806de780666e
BLAKE2b-256 1e0c239ca329254b1e0c7c30bdc1d2b3df50a3e040b891d5c5aa6f0a781c73e8

See more details on using hashes here.

File details

Details for the file sqlsaber-0.61.0-py3-none-any.whl.

File metadata

  • Download URL: sqlsaber-0.61.0-py3-none-any.whl
  • Upload date:
  • Size: 153.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.6 {"installer":{"name":"uv","version":"0.10.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sqlsaber-0.61.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2acd6a22f36e76933245e53de4655c9b3e9a885a749fc88c953452604b778356
MD5 a58084f5ca4d0c1ba96ced07232f3f39
BLAKE2b-256 468be2962929e9317afa06e8ffec588048ca72dd5117c186871f0f4a7edf2b9c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page