A curated collection of Agent Skills for working with dbt, to help AI agents understand and execute dbt workflows more effectively.
91
Does it follow best practices?
Validation for skill structure
Thank you for your interest in contributing to dbt Agent Skills! This guide will help you create, improve, and submit skills that help AI agents work effectively with dbt.
This repository contains Agent Skills for working with dbt. Skills follow the Agent Skills specification and help AI agents build models, create semantic layers, troubleshoot platform issues, and more.
There are several ways to contribute:
Create a new folder with a descriptive name using gerund form (verb + -ing):
mkdir -p skills/running-incremental-modelsEvery skill must have a SKILL.md file following the Agent Skills specification:
---
name: running-incremental-models
description: Use when running incremental dbt models or deciding between incremental and full refresh strategies
user-invocable: false
metadata:
author: dbt-labs
---
# Running Incremental Models
This skill helps agents execute incremental dbt models effectively, understanding when to use full refresh and how to handle incremental logic.
## When to Use
- Running specific incremental models
- Forcing a full refresh of incremental models
- Testing incremental logic after changes
- Rebuilding corrupted incremental tables
## Commands
### Run All Incremental Models
\`\`\`bash
dbt run --select config.materialized:incremental
\`\`\`
### Full Refresh Incremental Models
\`\`\`bash
dbt run --select config.materialized:incremental --full-refresh
\`\`\`
## Common Mistakes
| Mistake | Fix |
|---------|-----|
| Running full refresh on large tables without need | Only use `--full-refresh` when data issues require it |
| Not testing incremental logic in dev first | Always validate in development before production |Include examples or helper content if needed:
running-incremental-models/
├── SKILL.md
└── examples/
├── incremental_model_example.sql
└── selector_patterns.txtadding-dbt-unit-test, building-dbt-semantic-layer)SKILL.md (uppercase), supporting files lowercaseAlways use code blocks with bash syntax highlighting:
dbt run --select model_nameInclude inline comments for complex commands:
# Run changed models and downstream dependencies
dbt run --select state:modified+ --state ./target--select, --exclude, --full-refresh, etc.)+, @, etc.)Required frontmatter in SKILL.md:
---
name: adding-something-useful
description: Use when [specific trigger or use case]
user-invocable: false
metadata:
author: dbt-labs
---Important:
name field must be lowercase and use only letters, digits, and hyphensname must match the directory name exactlyadding-, building-, configuring-)user-invocable: false unless the skill should appear as a slash commandname, description, user-invocable, allowed-tools, compatibility, license, metadataNeed inspiration? Consider creating skills for:
By contributing, you agree that your contributions will be licensed under the same license as this repository.
Install with Tessl CLI
npx tessl i dbt-labs/dbt-agent-skillsevals
scenarios
dbt-docs-arguments
dbt-docs-unit-test-fixtures
dbt-job-failure
dbt-unit-test-format-choice
example-yaml-error
fusion-migration-triage-basic
fusion-migration-triage-blocked
fusion-triage-cat-a-static-analysis
fusion-triage-cat-b-dict-meta-get
fusion-triage-cat-b-unexpected-config
fusion-triage-cat-b-unused-schema
fusion-triage-cat-b-yaml-syntax
fusion-triage-cat-c-hardcoded-fqn
tests
scripts
skills
dbt
skills
adding-dbt-unit-test
references
answering-natural-language-questions-with-dbt
building-dbt-semantic-layer
configuring-dbt-mcp-server
fetching-dbt-docs
scripts
running-dbt-commands
troubleshooting-dbt-job-errors
references
using-dbt-for-analytics-engineering
dbt-migration
skills
migrating-dbt-core-to-fusion
migrating-dbt-project-across-platforms