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') }}
),

renamed as (
Related skills

More from armanzeroeight/fastagent-plugins

Installs
6
GitHub Stars
27
First Seen
Feb 4, 2026