data-pipeline-cicd

data-pipeline-cicd is a skill for Claude Code, Codex from j4flmao/agent-skills. It costs 136 tokens per session (3,635 once invoked), scanned A, original, MIT.

A guide to continuous integration and delivery for data pipelines: automatically checking and promoting SQL and transformation changes between development, testing, and production. dbt is a tool for building and testing data transformations.

In plain words
What is it for?
It is for configuring SQL linting, dbt tests, deployment checks, schema changes, and promotion workflows in CI/CD systems.
Why use it?
It catches SQL, data, and schema problems before they reach production. It also makes database changes and environment promotion more consistent.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Codex.

Good fit It is for configuring SQL linting, dbt tests, deployment checks, schema changes, and promotion workflows in CI/CD systems.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/j4flmao/agent-skills/data-pipeline-cicd
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.

Any agent
npx skills add j4flmao/agent-skills --skill data-pipeline-cicd
Clone the repo
git clone --depth 1 https://github.com/j4flmao/agent-skills

Made for: Claude Code, Codex.

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 data-pipeline-cicd

README.md
[![agentmods](https://agentmods.dev/badge/skills/j4flmao/agent-skills/data-pipeline-cicd/github.svg)](https://agentmods.dev/skills/j4flmao/agent-skills/data-pipeline-cicd)
Your own site
<a href="https://agentmods.dev/skills/j4flmao/agent-skills/data-pipeline-cicd"><img src="https://agentmods.dev/badge/skills/j4flmao/agent-skills/data-pipeline-cicd/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 data-pipeline-cicd

Your own site · 80×15
<a href="https://agentmods.dev/skills/j4flmao/agent-skills/data-pipeline-cicd"><img src="https://agentmods.dev/badge/skills/j4flmao/agent-skills/data-pipeline-cicd.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 136 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,635 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00136 $0.03635
Opus 5 $0.00068 $0.01818
Sonnet 5 $0.00027 $0.00727
Haiku 4.5 $0.00014 $0.00364

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

Security

Grade A, and why

data-pipeline-cicd 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 7d 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.

skills/data/data-pipeline-cicd/SKILL.md · 501 lines

How it starts

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

Data Pipeline CI/CD

Purpose

Establish continuous integration and delivery for data pipelines covering SQL code quality, dbt model testing, schema change management, and environment promotion from dev to production.

Agent Protocol

Trigger

Exact user phrases: "data pipeline CI/CD", "dbt CI/CD", "SQLFluff", "SQL linting", "Atlantis SQL", "data pipeline testing", "environment promotion", "schema change management", "dbt test", "data CI", "database CI/CD", "data quality CI", "SQL review", "data deployment".

Input Context

Before activating, verify:

  • Data transformation framework (dbt, SQLMesh, Dataform, custom SQL)
  • Data warehouse (Snowflake, BigQuery, Redshift, Databricks, Postgres)
  • CI platform (GitHub Actions, GitLab CI, CircleCI, Jenkins)
  • Environments (dev, staging, prod) and promotion strategy
  • Testing framework (dbt test, Great Expectations, data-diff, Soda)
  • Schema migration tool (Alembic, Flyway, dbt migrations)

Output Artifact

CI/CD pipeline configuration with SQL linting rules, dbt test setup, environment promotion workflow, and schema change management as YAML, SQL, and configuration.

Response Format

# CI/CD pipeline configuration
# SQLFluff config
-- dbt test example
-- dbt Cloud job config

No preamble. No postamble. No explanations. No filler/hedging/transitions. Compress output.

Completion Criteria

  • CI pipeline with SQLFluff linting configured
  • dbt test suite with singular and generic tests
  • Environment promotion workflow (dev -> staging -> prod) defined
  • Schema change management with migration scripts
  • Data diff or comparison testing in staging
  • Rollback strategy documented

Max Response Length

4096

Workflow

CI Pipeline for dbt Projects

# .github/workflows/dbt-ci.yml
name: dbt CI
on:
  pull_request:
    branches: [main]
    paths: ['transform/**', 'profiles.yml']

jobs:
  lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-python@v5
        with:
          python-version: '3.11'
      - run: pip install sqlfluff==3.0.0 sqlfluff-templater-dbt
      - run: sqlfluff lint transform/models/ --dialect snowflake --templater dbt

  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-python@v5
        with:
          python-version: '3.11'
      - run: pip install dbt-snowflake dbt-core==1.7.0
      - run: dbt deps --project-dir transform
      - run: dbt build --project-dir transform --target ci
      - run: dbt docs generate --project-dir transform

Read the full file on GitHub · 501 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. 7d ago First seen · 501 lines · 136 tokens per session scan A 50ea5d06c54b

Subscribe to this mod's changes

data-pipeline-cicd is a skill published in the GitHub repository j4flmao/agent-skills (22 stars, last pushed 4d ago), licensed MIT. It adds 136 tokens to every session and 3,635 once invoked, about $0.0007 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-09-03.

Related

Other skills, from other repositories

CI/CD Pipeline Advanced

Expert-level CI/CD pipeline skill for test automation. Covers GitHub Actions, Jenkins, GitLab CI, Azure DevOps, parallel execution, matrix strategies, caching, artifact management, and deployment gates.

PramodDutta/qaskills · 45 tokens

CI/CD Pipeline Config

CI/CD pipeline configuration skill for test automation, covering GitHub Actions, Jenkins, GitLab CI, test parallelization, reporting, and artifact management.

PramodDutta/qaskills · 35 tokens

dbt-expert

Expert-level dbt (data build tool), models, tests, documentation, incremental models, macros, and Jinja templating. Use when the user mentions analytics engineering, SQL, data transformation, Jinja, or testing, or when the task involves Project Structure and Configuration, Sources and Staging Models, Intermediate and…

personamanagmentlayer/pcl · 76 tokens

cicd-pipeline-qe-orchestrator

Orchestrate quality engineering across CI/CD pipeline phases. Use when designing test strategies, planning quality gates, or implementing shift-left/shift-right testing.

summarybotng/summarybot-ng · 41 tokens

qcsd-cicd-swarm

QCSD Verification phase swarm for CI/CD pipeline quality gates using regression analysis, flaky test detection, quality gate enforcement, and deployment readiness assessment. Consumes Development outputs (SHIP/CONDITIONAL/HOLD decisions, quality metrics) and produces signals for Production monitoring.

summarybotng/summarybot-ng · 61 tokens

ci

Configure Ginkgo for continuous integration — the recommended CLI flag set and the rationale for each flag (-r -p --randomize-all --randomize-suites --fail-on-pending --fail-on-empty --keep-going --cover --race --trace --json-report --timeout --poll-progress-after/-interval), invoking via go run to pin the CLI to…

onsi/ginkgo · 151 tokens