model-builder

Installation
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') }}
),
Installs
10
GitHub Stars
29
First Seen
Feb 4, 2026
model-builder — armanzeroeight/fastagent-plugins