etl-stabilization

etl-stabilization is a skill for Claude Code from sfc-gh-dflippo/snowflake-dbt-demo. It costs 154 tokens per session (7,864 once invoked), scanned A, original, Apache-2.0.

A phase-based workflow for repairing gaps in ETL conversions to Snowflake. It analyses a converted ETL unit, plans the work, creates tests, and coordinates repairs across orchestration SQL and optional dbt projects.

In plain words
What is it for?
It helps organise and run end-to-end stabilisation for SSIS, Informatica, and other ETL conversions, including roadmap creation, testing, and coordinated fixes.
Why use it?
It breaks a large migration repair into tracked phases and uses tests derived from the original source to show whether each change preserves the intended behaviour.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions subagents.

Part of the snowflake-migration plugin — 72 skills, 7 agents shipped together

Good fit It helps organise and run end-to-end stabilisation for SSIS, Informatica, and other ETL conversions, including roadmap creation, testing, and coordinated fixes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sfc-gh-dflippo/snowflake-dbt-demo/etl-stabilization
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 sfc-gh-dflippo/snowflake-dbt-demo --skill etl-stabilization
Clone the repo
git clone --depth 1 https://github.com/sfc-gh-dflippo/snowflake-dbt-demo

Made for: Claude Code.

Or install snowflake-migration, the plugin that ships this one along with the rest of its 72 skills, 7 agents.

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 etl-stabilization

README.md
[![agentmods](https://agentmods.dev/badge/skills/sfc-gh-dflippo/snowflake-dbt-demo/etl-stabilization/github.svg)](https://agentmods.dev/skills/sfc-gh-dflippo/snowflake-dbt-demo/etl-stabilization)
Your own site
<a href="https://agentmods.dev/skills/sfc-gh-dflippo/snowflake-dbt-demo/etl-stabilization"><img src="https://agentmods.dev/badge/skills/sfc-gh-dflippo/snowflake-dbt-demo/etl-stabilization/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 etl-stabilization

Your own site · 80×15
<a href="https://agentmods.dev/skills/sfc-gh-dflippo/snowflake-dbt-demo/etl-stabilization"><img src="https://agentmods.dev/badge/skills/sfc-gh-dflippo/snowflake-dbt-demo/etl-stabilization.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 154 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,864 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.00154 $0.07864
Opus 5 $0.00077 $0.03932
Sonnet 5 $0.00031 $0.01573
Haiku 4.5 $0.00015 $0.00786

Measured yesterday against content hash 9df7f5b2c577, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

etl-stabilization 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 yesterday.

The scan reads SKILL.md. This mod also ships 1 executable file (platforms/ssis/strip_dead_code.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/skills/snowflake-migration/skills/migration/migrate-objects/actions/etl-stabilization/SKILL.md · 510 lines

How it starts

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

ETL Orchestrator

Fix SnowConvert ETL conversion gaps through phased execution with upfront unit analysis, agent-determined test strategies, and cross-phase learning.

Prerequisites

  • Converted ETL unit folder (orchestration .sql + optional dbt subfolders)
  • Original source definition file (e.g., .dtsx for SSIS, .xml for Informatica)
  • Active Snowflake connection with a warehouse
  • DATABASE + SCHEMA with write privileges (CREATE TABLE, CREATE FUNCTION, CREATE PROCEDURE)

When the converted-output folder is not isolated

The default contract above assumes one folder per unit. If instead you're handed a flat, whole-repository conversion output where a dbt project is referenced by more than one sibling unit's orchestration file (e.g. Informatica SHORTCUT mappings reused across workflows), do not edit the shared project in place:

  1. Stage a real copy of the orchestration file and every dbt project it references under {PACKAGE_FOLDER}/Output/ETL/{unit}/. Treat the original location read-only until sync-back.
  2. If a staged dbt project's packages.yml has a local path: dependency, do not edit the path to account for the extra staging depth — that breaks canonical when synced back. Instead, symlink the shared-assets directory into the unit folder at the depth packages.yml already expects.
  3. Before syncing any fix back, run the leak gate on every touched file, then diff against the original — test-environment values (schema/database names, credentials) must never reach the canonical copy:
    uv run --project {SKILL_DIR} python {SKILL_DIR}/scripts/check_sync_leaks.py {SESSION_JSON} <file1> [<file2> ...]
    
    Do not copy until this exits 0.

Persistent Files

All files stored in {UNIT}/stabilization/:

File Purpose
planning/scan.json Unit scan output (elements, EWIs, dbt projects)
planning/orchestration-context.md Orchestration structural understanding (statements, element relationships, containers)
planning/dbt-context.md dbt project analysis (model inventory, health, source mapping, bootstrap blockers). Only present when unit has dbt projects.
planning/source-excerpts.md Source-definition excerpts for traceability (conditional — only if source file is large)
planning/ROADMAP.md Phase plan (agent-authored from template; updated in-place during execution). Never delete content.
tracking/STATE.md Resumption bookmark (GENERATED — use track_status.py commands, do not edit directly)
tracking/progress.json Element-level tracking (machine-readable)
tracking/fix-log.md Append-only record of every fix applied. Absent until Phase 1 completes.
phases/phase-{N}/ Per-phase artifacts: baselines, batch reports, learnings, infrastructure SQL
report.html Self-contained HTML report aggregating all artifacts. Generated during Final Validation by generate_report.py.

Progressive disclosure: Reference files are loaded on-demand — only read a reference file when its content is needed for the current step.

Read the full file on GitHub · 510 lines

Files

What ships with it

60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. yesterday First seen · 510 lines · 154 tokens per session scan A 9df7f5b2c577

Subscribe to this mod's changes

etl-stabilization is a skill published in the GitHub repository sfc-gh-dflippo/snowflake-dbt-demo (33 stars, last pushed 2d ago), licensed Apache-2.0. It adds 154 tokens to every session and 7,864 once invoked, about $0.0008 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-10.