dbt-engineering
Installation
SKILL.md
dbt Engineering
Conventions
- SQL keywords: lowercase (
select,from,where,join) — dbt convention, distinct from raw BigQuery SQL (uppercase). - Identifiers:
snake_casefor models, columns, sources, macros. - Language: Descriptions, schema.yml metadata, macro documentation, Jinja comments in English.
- Runtime:
uv run dbt <command>— never baredbtoutside a uv-managed project.