BigQuery dbt model scaffolder from YAML data contracts. Generates Data Products with auto introspection.
Project description
👻 wraith-modelgen
Sovereign dbt Scaffolding for the Ghost Stack
wraith-modelgen is a BigQuery dbt model scaffolder. Feed it a YAML data contract, get back a pair of sovereign data products: an Origin (raw) layer that passes everything through, and a Consumption (staging) layer that holds the stable line for downstream consumers.
Source schemas change. Columns get renamed. Types get tightened. New fields appear without ceremony. In most analytics codebases this is a downstream catastrophe: dashboards break, FDPs fail, the analytics team gets paged at 03:00, and someone files a ticket asking whether dbt itself is broken.
wraith-modelgen makes the data contract the change-management mechanism. The source team updates it as part of their release. wraith-modelgen regenerates the models. Downstream sees what it sees. Nothing breaks unless something it actually depended on disappears, which triggers a generation failure with the column name.
🚀 Installation
uv tool install wraith-modelgen
You'll also need Application Default Credentials for BigQuery introspection:
gcloud auth application-default login
⚙️ Workflow
modelgen init # scaffold .modelgen.yml + dirs (once)
modelgen new my-project.landing.user_signups # draft a contract from a live table
modelgen validate contracts/user_signups.yml # offline semantic lint, all findings at once
modelgen run # regenerate every layer of every contract
modelgen check --diff # CI: fail if committed models drifted
Single layers when you need them — --raw and --staging are mutually exclusive:
modelgen gen contract.yml --raw -o ./models/raw
modelgen gen contract.yml --staging -o ./models/staging
modelgen gen contract.yml --raw --dry-run # preview without writing
| Command | What it does |
|---|---|
init |
Scaffold project layout: .modelgen.yml, contracts/, models/ |
new |
Bootstrap a draft contract from a live BigQuery table, keys guessed and marked TODO |
validate |
Offline structural + semantic lint; --strict promotes warnings to failures |
gen |
Generate one layer from one contract |
run |
Regenerate every layer of every contract under .modelgen.yml |
check |
Render in memory, diff against disk, exit non-zero on drift. Writes nothing. |
📄 Contract anatomy
version: "1"
event:
name: user_signed_up # the entity
unique_key: EVENT_ID # SOURCE column name (composite: [a, b])
loaded_at_field: RECEIVED_AT # SOURCE column name
source:
project: my-gcp-project
dataset: landing
table: user_signups_raw
raw:
dataset: raw
incremental_strategy: merge
dedup: true # row_number() partition by unique_key
partition_by:
field: RECEIVED_AT
data_type: timestamp
granularity: day
cluster_by: [USER_ID]
staging:
dataset: staging
incremental_strategy: merge
partition_by:
field: received_at # staging-side name (post-rename)
data_type: timestamp
granularity: day
cluster_by: [user_id]
columns:
- source: EVENT_ID # name in raw (== name in source)
name: event_id # name in staging
type: STRING # cast target
description: "..."
tests: [not_null, unique]
🔄 Schema evolution
| Source change | What wraith-modelgen does | What you do |
|---|---|---|
| Adds a column | Does not appear until you regenerate (modelgen run). Invisible in staging until declared in the contract. |
Regenerate, then add to staging when consumers need it. |
| Renames a column | Validation fails: column not found in source. | Update the source: field on that column. Also unique_key / loaded_at_field if applicable. |
| Retypes a column | Existing CAST in staging absorbs it (or fails loudly at query time if values are incompatible). | Update type: if the canonical type should change too. |
| Drops a column staging uses | Validation fails: column not found. | Either restore upstream or remove from staging contract. |
Validation runs as part of modelgen gen --staging. If it passes, the generated staging model still presents the same contract to downstream consumers.
🏗️ What gets generated
For --raw:
raw__event.sql: dbt incremental model with{{ source(...) }}, optional dedup window, partition and cluster config.raw__event.yml: dbt sources entry plus model definition. Columns mirror the introspected source schema.
For --staging:
stg__event.sql: dbt incremental model with{{ ref('raw__event') }}. Casts and renames applied.stg__event.yml: model definition with column tests from the contract.
🧪 Developer Quality Gate
# Clone and set up
git clone https://git.thomaspeoples.com/thomaspeoples/wraith-modelgen
cd wraith-modelgen
uv run poe setup # syncs deps + installs pre-commit hooks
# The quality gate
uv run poe test # pytest (interactive)
uv run poe test-ci # pytest with coverage enforcement (≥80%)
uv run poe lint # ruff check
uv run poe format # ruff format
The test suite uses FakeIntrospector and runs without BigQuery credentials. Covers contract parsing, semantic linting, both layers, schema evolution scenarios, composite keys, REPEATED/RECORD types, determinism, drift detection, contract scaffolding, and error surfaces.
Committing
All commits go through commitizen with the Ghost Stack convention:
👻 <type>/<ticket>: <message>
uv run cz commit
📜 Sovereign Principles
- One layer per invocation. Layers have different lifecycles; conflating them makes things harder to reason about.
- Introspection at gen time. The warehouse is the source of truth for column names and types. Drift is impossible because nothing is duplicated.
- Deterministic output. Same contract + same source schema = byte-identical files.
modelgen checkturns this into a CI gate. - Strict failure on missing columns. No silent passes. If the contract references a column the source no longer has, generation fails with the column name.
- BigQuery only. The introspection module is BQ-native. Add a different
Introspectorimplementation if you need another warehouse.
Part of the Ghost Stack. Sovereign. Self-hosted. No nonsense.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file wraith_modelgen-0.10.0.tar.gz.
File metadata
- Download URL: wraith_modelgen-0.10.0.tar.gz
- Upload date:
- Size: 154.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","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":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9356f7ee4328c68d281e8547569dae0573990c537c9e184d719ea47b5d391c7b
|
|
| MD5 |
7c4717f157bb838631e452d721c8569b
|
|
| BLAKE2b-256 |
924e43aab6fdda28f2bce6731570adc1c86feac168a47e0a5f83e8c2d5d48142
|
File details
Details for the file wraith_modelgen-0.10.0-py3-none-any.whl.
File metadata
- Download URL: wraith_modelgen-0.10.0-py3-none-any.whl
- Upload date:
- Size: 29.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","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":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a58caafcc50e7ce03276e5db5521fe67e63e9508e30992266814b91e91cc61c4
|
|
| MD5 |
ace152da0ac85288125f564f5fc1ba53
|
|
| BLAKE2b-256 |
d0ca482e67e8dd17060f625517f9d8ae4d47507e0c49c9ba3fee786aaea4f979
|