askill
model-builder

model-builderSafety 90Repository

Creates dbt models with proper layering (staging, marts), incremental strategies, and documentation. Use when creating dbt models, organizing data transformations, or implementing incremental models.

23 stars
1.2k downloads
Updated 2/7/2026

Package Files

Loading files...
SKILL.md

dbt Model Builder

Quick Start

Create well-structured dbt models following best practices for staging, intermediate, and mart layers.

Instructions

Step 1: Create staging models

Staging models clean and standardize raw data:

-- models/staging/stg_orders.sql
with source as (
    select * from {{ source('raw', 'orders') }}
),

renamed as (
    select
        order_id,
        customer_id,
        order_date,
        order_total,
        order_status,
        created_at,
        updated_at
    from source
)

select * from renamed

Add schema file:

# models/staging/schema.yml
version: 2

models:
  - name: stg_orders
    description: Cleaned and standardized orders from raw data
    columns:
      - name: order_id
        description: Unique order identifier
        tests:
          - unique
          - not_null
      - name: customer_id
        description: Customer who placed the order
        tests:
          - not_null

Step 2: Create mart models

Mart models contain business logic:

-- models/marts/fct_orders.sql
with orders as (
    select * from {{ ref('stg_orders') }}
),

customers as (
    select * from {{ ref('stg_customers') }}
),

final as (
    select
        orders.order_id,
        orders.customer_id,
        customers.customer_name,
        orders.order_date,
        orders.order_total,
        orders.order_status
    from orders
    left join customers
        on orders.customer_id = customers.customer_id
)

select * from final

Step 3: Create incremental models

For large datasets, use incremental models:

-- models/marts/fct_events.sql
{{
    config(
        materialized='incremental',
        unique_key='event_id',
        on_schema_change='fail'
    )
}}

with events as (
    select * from {{ source('raw', 'events') }}
    
    {% if is_incremental() %}
    where event_timestamp > (select max(event_timestamp) from {{ this }})
    {% endif %}
)

select * from events

Step 4: Add documentation

# models/marts/schema.yml
version: 2

models:
  - name: fct_orders
    description: Order facts with customer information
    columns:
      - name: order_id
        description: Unique order identifier
        tests:
          - unique
          - not_null
      - name: order_total
        description: Total order amount
        tests:
          - not_null
          - dbt_utils.accepted_range:
              min_value: 0

Model Layering

Staging (stg_):

  • Clean and standardize raw data
  • One-to-one with source tables
  • Minimal transformations
  • Column renaming and type casting

Intermediate (int_):

  • Complex transformations
  • Join multiple staging models
  • Not exposed to end users

Marts (fct_, dim_):

  • Business logic
  • Fact and dimension tables
  • Exposed to end users

Best Practices

  1. Follow naming conventions (stg_, int_, fct_, dim_)
  2. Use CTEs for readability
  3. Document all models and columns
  4. Add tests to all models
  5. Use refs for dependencies
  6. Implement incremental models for large datasets
  7. Configure materialization appropriately
  8. Use sources for raw data

Advanced

For detailed information, see:

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

87/100Analyzed 2/22/2026

High-quality dbt model builder skill with clear step-by-step instructions, working code examples for staging/mart/incremental models, schema configurations, and best practices. Well-organized in a dedicated skills folder with tags. Covers model layering comprehensively with CTEs, naming conventions, and documentation patterns. Minor gaps include intermediate models and seeds/snapshots, but overall excellent technical reference with strong actionability and reusability for dbt developers.

90
90
85
80
85

Metadata

Licenseunknown
Version-
Updated2/7/2026
Publisherarmanzeroeight

Tags

database