dbt-deployer

dbt-deployer is an agent for Claude Code from sfc-gh-dflippo/snowflake-dbt-demo. It costs 23 tokens per session (586 once invoked), scanned A, original, Apache-2.0.

An AI deployment specialist for dbt projects on Snowflake, a cloud data platform. It covers local checks, deployment, scheduled runs, and monitoring.

In plain words
What is it for?
Checking dbt projects locally, deploying them as Snowflake projects, setting up schedules and integrations, and reviewing run or test history.
Why use it?
It helps move dbt work from a developer's computer into repeatable Snowflake execution while tracking whether runs succeed.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter; $skill-name invocation.

Good fit Checking dbt projects locally, deploying them as Snowflake projects, setting up schedules and integrations, and reviewing run or test history.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/sfc-gh-dflippo/snowflake-dbt-demo/dbt-deployer
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/sfc-gh-dflippo/snowflake-dbt-demo

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for dbt-deployer

README.md
[![agentmods](https://agentmods.dev/badge/agents/sfc-gh-dflippo/snowflake-dbt-demo/dbt-deployer/github.svg)](https://agentmods.dev/agents/sfc-gh-dflippo/snowflake-dbt-demo/dbt-deployer)
Your own site
<a href="https://agentmods.dev/agents/sfc-gh-dflippo/snowflake-dbt-demo/dbt-deployer"><img src="https://agentmods.dev/badge/agents/sfc-gh-dflippo/snowflake-dbt-demo/dbt-deployer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for dbt-deployer

Your own site · 80×15
<a href="https://agentmods.dev/agents/sfc-gh-dflippo/snowflake-dbt-demo/dbt-deployer"><img src="https://agentmods.dev/badge/agents/sfc-gh-dflippo/snowflake-dbt-demo/dbt-deployer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 586 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00023 $0.00586
Opus 5 $0.00012 $0.00293
Sonnet 5 $0.00005 $0.00117
Haiku 4.5 $0.00002 $0.00059

Measured 10d ago against content hash 63fe32ec3fb2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

dbt-deployer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/agents/dbt-deployer.md · 71 lines

How it starts

The opening of the file, as written. The whole thing — 71 lines — stays where its author put it; the contents beside it link to each section on GitHub.

dbt Deployer

You are a dbt deployment specialist. When invoked, help users develop dbt projects locally and deploy them to dbt Projects on Snowflake for test and production execution.

Skills to load

Load these with the Skill tool as the work requires:

  • dbt-projects-on-snowflake — DBT PROJECT objects, execution, event-table monitoring
  • dbt-projects-snowflake-setup — first-time setup: integrations, event table, scheduling
  • dbt-artifacts — run and test history from dbt artifacts
  • schemachange — objects dbt does not own, migration-style deployment
  • dbt-commands — dbt CLI and model selection syntax
  • dbt-core — local environment and package management
  • snowflake-clisnow CLI deployment and execution
  • snowflake-connectionsconnections.toml and authentication

Development Model

Develop locally, deploy to Snowflake:

  1. Local development - Write and test models using dbt-core locally
  2. Deploy to Snowflake - Deploy as DBT PROJECT objects for production execution
  3. Schedule and monitor - Use Snowflake Tasks and event tables

Workflow

  1. Local validation - Run dbt debug, dbt compile, dbt build locally
  2. Setup Snowflake - Follow $dbt-projects-snowflake-setup for integrations
  3. Deploy project - Use snow dbt deploy or Snowsight workspace
  4. Execute in Snowflake - Use EXECUTE DBT PROJECT or snow dbt execute
  5. Monitor - Query event tables per $dbt-projects-on-snowflake skill

Key Commands

# Local development
dbt debug                    # Verify connection
dbt compile                  # Validate SQL
dbt build                    # Run and test locally

# Deploy to Snowflake
snow dbt deploy my_project --source .

# Execute in Snowflake
snow dbt execute my_project build
snow dbt execute my_project "build --select tag:daily"

# Schedule with Tasks
EXECUTE DBT PROJECT db.schema.project args='build';

Prerequisites

Before deploying, ensure Snowflake has:

  • External access integration (for dbt deps)
  • Git API integration (for workspaces)
  • Event table configured at DATABASE level

Read the full file on GitHub · 71 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 71 lines · 23 tokens per session scan A 63fe32ec3fb2

Subscribe to this mod's changes

dbt-deployer is an agent published in the GitHub repository sfc-gh-dflippo/snowflake-dbt-demo (33 stars, last pushed today), licensed Apache-2.0. It adds 23 tokens to every session and 586 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

mlops_engineer

MLOps specialist for model registry, CI/CD for models, deployment, monitoring, and drift detection. Use when the task requires packaging models for serving, building training/deploy pipelines, configuring model monitoring, or wiring up canary rollouts. For example: automating retraining on a schedule, setting up…

josstei/maestro-orchestrate · 76 tokens

ai-devops-engineer

Expert in LLM serving infrastructure, GPU orchestration, AI cost optimization, and multi-agent system operations. Use for deploying AI systems to production, managing AI-specific CI/CD, and operating AI workloads at scale.

SteveGJones/ai-first-sdlc-practices · 48 tokens

FAI Model Serving AKS Builder

Model Serving AKS builder — GPU cluster design, vLLM/TGI serving engines, NVIDIA device plugin, HPA/KEDA autoscaling, model versioning, and canary deployments.

frootai/frootai · 46 tokens

mlops-engineer

Use this agent when you need to design and implement ML infrastructure, set up CI/CD for machine learning models, establish model versioning systems, or optimize ML platforms for reliability and automation. Invoke this agent to build production-grade experiment tracking, implement automated training pipelines…

alexmmatos/arthur-mcp · 71 tokens

model-deployment-engineer

Automotive ML model deployment engineer managing the transition from trained models to production vehicle systems.

birol91/quorum-agents · 22 tokens

mlops-specialist

Automotive MLOps specialist managing machine learning operations infrastructure for vehicle AI systems.

birol91/quorum-agents · 20 tokens