Skip to main content

sql-write-gate

CI Release Python 3.11+ License: MIT

写库前门禁 · Policy firewall for AI agents writing to databases.

Prevent Claude Code, Codex, Cursor and MCP agents from executing unsafe database operations.

  Agent SQL  ──►  sql-write-gate  ──►  ALLOW / BLOCK / APPROVAL  ──►  Database

Deterministic policy engine (sqlglot AST + catalog + policy.yaml). No LLM. No API key.

非生产唯一边界 — Early gate prototype; not the sole production security boundary. 未列语法拒绝 — unsupported / ambiguous SQL → REJECT/BLOCK (fail closed), never silent ALLOW as read-only.

Install

pip install sql-write-gate
pip install 'sql-write-gate[postgres]'   # optional: psycopg
pip install 'sql-write-gate[mysql]'      # optional: pymysql
pip install 'sql-write-gate[mcp]'        # optional: MCP server

From a clone:

pip install -e ".[dev]"                 # or: make install
pip install -e ".[postgres,mysql]"
make test                               # PG/MySQL live tests skip if no service
sql-write-gate check "DELETE FROM users"
# → BLOCKED  rule=delete_without_where

Commands

sql-write-gate check "SQL"       # evaluate SQL; no execute
sql-write-gate hook              # PreToolUse: block raw psql/mysql/…
sql-write-gate mcp               # MCP stdio (query_sql / write_sql)
sql-write-gate proxy --sql "..." # gate then execute if ALLOW
sql-write-gate approve <id>      # human approve then write (once)
sql-write-gate resolve <id> --as succeeded|failed|rejected
sql-write-gate audit             # TIME / SOURCE / OP / TABLE / VERDICT
sql-write-gate init              # scaffold policy.yaml + catalog.json

What it does (current)

  • DROP / TRUNCATE / ALTER → BLOCK
  • DELETE / UPDATE without WHERE → BLOCK
  • Blast-radius COUNT vs update_rows / delete_rows (dialect quoting; fail-closed on estimate error)
  • Schema / PII / restricted columns; PII SELECT → REQUIRE_APPROVAL (approve executes once)
  • Freshness partitions (dt); range / NOT / OR / UPSERT SET expired → BLOCK
  • Nested / data-modifying CTE / SELECT INTO → REJECT (unsupported_sql)
  • Approval state machine (SQLite source of truth + JSONL mirror): pendingexecutingsucceeded|failed|unknown (+ rejected)
  • Atomic claim under fcntl.flock + SQLite BEGIN IMMEDIATE (single-host; fail closed without flock)
  • Three-state execute outcomes; unknown/executing never auto-retried — use resolve or approve --allow-unknown-retry after manual DB verify
  • JSONL audit (redacts URL passwords; records execute failures / unknown; request_id + approval_id + execution_outcome correlation; rotatable)
  • Adapters: DuckDB (default), PostgreSQL, MySQL, SQLite

Platform support matrix

Surface Linux / macOS Windows
pip install / CLI check / init / audit
DuckDB file backend
SQLite sqlite:/// paths (incl. C:/…)
Postgres / MySQL URL adapters ✅ (drivers via extras)
PreToolUse hook / MCP stdio ✅ (same Python entrypoints)
Concurrent approve (flock + SQLite claim) fail closedApprovalError if fcntl.flock unavailable (no silent unlock)

Windows: install, CLI evaluate/execute on DuckDB/SQLite/URL backends work. Approval mutations require Unix fcntl flock (plus SQLite transactions); without flock they refuse rather than silently degrading.

Approval outcomes & crash recovery (v0.21)

Status Meaning Default approve
pending Queued; not executed Claims → executes
executing Claim held (in flight) Refuse (no steal)
succeeded DB write/query completed Idempotent; no re-write
failed Known not committed / never sent May reclaim & retry
unknown Timeout/disconnect/crash/indeterminate Refuse — never auto-retry
rejected Human rejected Refuse

Recovery rules:

  1. Process crash while executing: after TTL (SQL_WRITE_GATE_EXECUTING_TTL_SEC, default 120s) → unknown (via approve --force-unknown-check / next store access). Never silent re-claim that re-runs SQL.
  2. Operator path for unknown: verify target DB manually, then either
    • sql-write-gate resolve <id> --as succeeded|failed|rejected (no SQL), or
    • sql-write-gate approve <id> --allow-unknown-retry (explicit re-exec; double-write risk).
  3. Default second approve on succeeded / unknown does not write again.

Database URLs

Env / kwarg Backend
POSTGRES_URL or postgresql://… / postgres://… PostgreSQL
MYSQL_URL or mysql://… / mysql+pymysql://… MySQL
DATABASE_URL (scheme-detected) Postgres / MySQL / SQLite
sqlite:/// / sqlite+aiosqlite:// SQLite (stdlib)
file path / default seed/warehouse.duckdb DuckDB

Priority: database=database_url=db_path=POSTGRES_URLMYSQL_URLDATABASE_URL → DuckDB default.

Live integration tests (optional locally)

export POSTGRES_URL=postgresql://gate:gate@localhost:5432/writegate
export MYSQL_URL=mysql://gate:gate@127.0.0.1:3306/writegate
pip install -e ".[dev,postgres,mysql]"
make test

Without those services, live tests skip; CI runs Postgres + MySQL service containers.

Policy (default production)

operation rule
select allow
insert approval
update approval
delete block
ddl block

Limits: update_rows: 100, delete_rows: 50. Demo policy (examples/policy.demo.yaml) allows insert/update for walkthroughs.

Guards (any BLOCK wins, else any APPROVAL, else ALLOW):

destructiveschemapiifreshnessblast_radiusenvironment

Decision model

ALLOW | BLOCK | REQUIRE_APPROVAL with risk, rule_id, reason, evidence.

Deployment model (trusted executor)

非生产唯一边界 — this gate is not the sole production security control.

Concern Where it lives
DB credentials (DATABASE_URL / …) Trusted executor only
policy.yaml / catalog Trusted executor (agents have no rewrite API)
approve / resolve / reject Trusted executor with approval token
check / hook / MCP query_sql/write_sql Agent-facing: evaluate / enqueue only

Approval privilege (SQL_WRITE_GATE_APPROVAL_TOKEN)

  1. On the trusted executor, create a secret file (default .logs/approval.key, or set SQL_WRITE_GATE_APPROVAL_KEY_FILE).
  2. When calling approve / resolve / reject, set env SQL_WRITE_GATE_APPROVAL_TOKEN to that file's contents.
  3. Missing key file, missing token, or wrong token → refuse (CLI exit non-zero). Correct token → 0.21 behavior.
  4. Agents must not receive the key file or token. They may still enqueue REQUIRE_APPROVAL via normal write paths.

Target binding

Approval records store database_config_id (fingerprint). Approve reconnect binds trusted credentials only for the same target. Queue against DB A then change env to DB B → approve fail closed (will not write to B).

SQL support matrix

Supported (gated) Explicitly rejected (unsupported_sql BLOCK)
Single-statement SELECT / INSERT / UPDATE / DELETE Multi-statement scripts (stmt1; stmt2)
DuckDB / PostgreSQL / MySQL / SQLite dialects via adapters MERGE / COPY / REPLACE / raw Command
Simple CTEs over read-only SELECT Data-modifying CTE / nested DML under any root
UPSERT ON CONFLICT DO UPDATE (PII/restricted on SET cols) PostgreSQL SELECT … INTO
Catalog-backed schema / PII / freshness / blast-radius Ambiguous or unlisted write-shaped SQL

Anything dangerous or ambiguous not on the supported side → unsupported_sql BLOCK/REJECT (fail closed), never silent ALLOW.

Boundaries (non-goals)

  • 非生产唯一边界 — combine with least-privilege DB roles, network isolation, and human workflows
  • Not a distributed approval lock, MySQL wire-protocol proxy, or Web UI
  • Not an enterprise DQ / lineage / ChatBI / multi-tenant platform

See docs/troubleshooting.md for common failures, unknown recovery, approval token, credentials, and real-DB CI.

See CHANGELOG.md for version history (v0.1 → v0.23).

Ops knobs (v0.23)

Env Default Purpose
SQL_WRITE_GATE_STATEMENT_TIMEOUT_SEC 0 (off) Statement timeout for check/execute/approve
SQL_WRITE_GATE_RESULT_ROW_LIMIT 1000 Cap SELECT/approve rows (truncate + truncated=true)
SQL_WRITE_GATE_RESULT_BYTE_LIMIT 0 (off) Optional materialized-result byte cap
SQL_WRITE_GATE_AUDIT_MAX_BYTES 10 MiB Rotate audit / approvals JSONL by size
SQL_WRITE_GATE_AUDIT_ROTATE_DAILY false Also rotate JSONL per UTC day
SQL_WRITE_GATE_REQUEST_ID auto uuid4 Audit correlation id

Backlog (post-0.23)

  • Statement timeout + failed/unknown mapping (0.23)
  • Result row/byte caps with truncate flag (0.23)
  • Audit request_id / correlation fields (0.23)
  • JSONL audit / approvals mirror rotation (0.23)
  • Troubleshooting guide (0.23)
  • Trusted-executor approval token + key file privilege separation (0.22)
  • Approve target fingerprint fail-closed on DATABASE_URL swap (0.22)
  • SQL support matrix + unsupported variant regressions (0.22)
  • Three-state approve outcomes + unknown ≠ auto-retry (0.21)
  • SQLite durable approval store + crash TTL → unknown (0.21)
  • Multi-process single-write approve regressions (0.21)
  • Real Postgres / MySQL CI services + persist/recheck integration tests (0.20)
  • R1–R6 permanent regression (dangerous + safe paths) (0.20)
  • Windows support matrix + flock fail-closed (0.20)
  • Release gate: wheel install smoke; publish needs test+build on same tag (0.20)
  • Deferred: distributed / multi-host approval lock
  • Deferred: MySQL wire-protocol proxy
  • Deferred: Web UI

许可

MIT。见 LICENSE.

Download files

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

Source Distribution

sql_write_gate-0.23.0.tar.gz (96.4 kB view details)

Uploaded Source

Built Distribution

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

sql_write_gate-0.23.0-py3-none-any.whl (81.0 kB view details)

Uploaded Python 3

File details

Details for the file sql_write_gate-0.23.0.tar.gz.

File metadata

  • Download URL: sql_write_gate-0.23.0.tar.gz
  • Upload date:
  • Size: 96.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for sql_write_gate-0.23.0.tar.gz
Algorithm Hash digest
SHA256 040bfb76b86d8d260c1e119e5b2557e8bcfc8df1f94c374ccf576808c6c7f1d2
MD5 168439ab38ea1fd1209d5811838d916b
BLAKE2b-256 649a61a0df97f72360a2b33295029d7ed5d499313154103beba3fe333c83c6c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_write_gate-0.23.0.tar.gz:

Publisher: publish.yml on tangyf07/sql-write-gate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sql_write_gate-0.23.0-py3-none-any.whl.

File metadata

File hashes

Hashes for sql_write_gate-0.23.0-py3-none-any.whl
Algorithm Hash digest
SHA256 417ed0b5f04af5e2c1690d82d8bd5329e41ab5d229a00bcc79f736567acab051
MD5 e657eb7c7e504d43367bdfe8ae8f3b1e
BLAKE2b-256 1b3a327f665295bf16798dd796857b9ea72f24d45d48dd82eab710387c0c1beb

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_write_gate-0.23.0-py3-none-any.whl:

Publisher: publish.yml on tangyf07/sql-write-gate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.0.1

2 files

1.0.0

2 files

This release

0.23.0 This release

2 files

0.22.0

2 files

0.21.0

2 files

0.20.0

2 files

0.19.0

2 files

0.18.0

2 files

0.17.0

2 files

0.16.1

2 files

0.16.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page