Etl pipeline design
Design ETL and ELT pipelines with clear contracts, quality checks, and failure modes. Use whenever the user plans data ingestion, transformations, warehouse loads, dbt-style models, batch/stream pipelines, or data pipeline architecture.From its SKILL.md
npx -y skills add shinzoxD/knackbox --skill etl-pipeline-designAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.7 KB, 291 tokens by cl100k_base, as published. Nobody here has run it
ETL / ELT Pipeline Design
Pipelines are products: contracts, SLAs, and tests. Prefer explicit schemas and idempotent loads over heroic one-off scripts.
Workflow
- Sources, destinations, latency needs (batch vs stream).
- Grain and business keys; late/duplicate data policy.
- ELT vs ETL trade-off for this stack.
- Stages: extract, land, validate, transform, publish.
- Data quality checks and alerting.
- Backfills, reprocessing, and cost controls.
- Ownership and lineage docs.
Output format
## Pipeline design: <name>
**SLA / freshness:** …
**Grain:** …
### Architecture
…
### Contracts
…
### Quality checks
…
### Failure & replay
…
### Cost notes
…
Rules
- Define idempotency keys for loads.
- Never silently drop rows; quarantine or metric the drops.
- PII handling and retention called out.
- Separate raw/landing from curated marts.
- Backfills must not corrupt current tables without plan.
- Do not invent warehouse features; mark assumptions.
Edge cases
- CDC/streaming: ordering, exactly-once illusions, watermarking.
- Slowly changing dimensions: SCD strategy explicit.
- Multi-source joins: source-of-truth hierarchy.
What ships with it: 1 file
1.2 KB alongside SKILL.md
benchmarks/
- prompts.json1.2 KB