creating-dbt-models
Installation
SKILL.md
dbt Model Development
Read before you write. Build after you write. Verify your output.
Critical Rules
- ALWAYS run
dbt buildafter creating/modifying models - compile is NOT enough - ALWAYS verify output after build using
dbt show- don't assume success - If build fails 3+ times, stop and reassess your entire approach
Workflow
1. Understand the Task Requirements
- What columns are needed? List them explicitly.
- What is the grain of the table (one row per what)?
- What calculations or aggregations are required?
2. Discover Project Conventions
Related skills