Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Data Pipelines

ASecurity

Build and repair batch and streaming pipelines that can be run twice without lying — lineage, event-time windowing, late arrivals, re-runnable writes and bounded backfills. Use when writing or fixing a pipeline, scheduled transform or job that produces data someone reads, when a run dropped or duplicated rows, or when planning a backfill. Not for designing the destination schema or its migrations, not for the standing assertions that guard the data afterwards (data-quality), and not for inter...

46 stars
0 votes
0 copies
0 views
Added 9/22/2026
ai-agentsgodocumentation

Works with

cursor

Security Analysis

A100/100

Scanned 9/22/2026

Install to Claude Code

$npx -y skills add nahid-sparktales/agent-dispatcher --skill data-pipelines --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Data Pipelines?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Data Pipelines
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/nahid-sparktales-data-pipelines/badge)](https://www.skillsdirectory.com/skills/nahid-sparktales-data-pipelines)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: data-pipelines
description: Build and repair batch and streaming pipelines that can be run twice without lying — lineage, event-time windowing, late arrivals, re-runnable writes and bounded backfills. Use when writing or fixing a pipeline, scheduled transform or job that produces data someone reads, when a run dropped or duplicated rows, or when planning a backfill. Not for designing the destination schema or its migrations, not for the standing assertions that guard the data afterwards (data-quality), and not for interpreting what the numbers mean.
---

# Data pipelines

Exit code zero says a process ended. It does not say the partition is complete, that the rows
match the source, or that running it again will not double every total downstream. Most pipeline
damage is done by a rerun that looked like a repair.

## When this fires

A pipeline, scheduled transform, ingestion job or notebook-promoted-to-job is being written,
changed or debugged; or a backfill is being planned. It fires when a run dropped, duplicated or
reshaped rows. It does not fire for a code defect unrelated to data movement, for the destination
schema's design, or for the scheduler platform itself.

## Procedure

1. **Trace lineage before editing anything.** Every upstream input, each transform step, the
   destination tables, and everything that reads them — reports, dashboards, downstream jobs,
   feature tables, exports. The blast radius is what you enumerate, not what you assume. Name the
   readers you found and say plainly which you could not enumerate.

2. **Write down the current contract**, even if nobody else has. The grain (one row per *what*),
   the partition or batch key, the expected volume per window, the freshness the consumer relies
   on, and the existing duplicate and late-arrival behaviour. Where you inferred this from the
   data rather than from documentation, say it is inferred.

3. **Separate the three clocks and pick one.** *Event time* is when the thing happened, *ingestion
   time* when it landed, *processing time* when the job touched it. Partition and window on event
   time; reprocessing changes the other two, and any result that depends on them changes when you
   rerun. Record the timezone and whether the boundary is inclusive — an off-by-one-hour partition
   is indistinguishable from data loss in a count.

4. **Say what closes a window.** A window that never closes never emits; one that closes too early
   drops the stragglers. Fix an allowed lateness against observed arrival lag, not a round number,
   and give data that arrives after the boundary a defined destination: reprocess the window, route
   it to a late-arrival table, or drop it *with a counter*. A silent drop is the default nobody
   chose deliberately.

5. **Make the write re-runnable.** Replace the partition, or merge on a deterministic business key
   derived from the input — never blind append. Then state in one sentence what a second run of the
   same input does. If the answer is "duplicates", the pipeline is not finished. Deriving the output
   key from wall-clock time or a random id makes a rerun a new row every time.

6. **Bound the unit of work** to one partition, date or batch, so a failure retries a slice instead
   of the history. Persist the cursor or high-water mark where it survives the process dying;
   in-memory progress is no progress.

7. **Reproduce a reported problem on one bounded slice**, not by rerunning the pipeline. Compare
   that slice to the source on row count, distinct key count and the sums of additive measures,
   then walk the transforms until the step where they diverge. A rerun that appends can hide the
   original loss behind fresh duplicates and destroys the evidence.

8. **Keep the transform separable from its I/O** so it can be exercised on a fixture with known
   input and known expected output. A transform that only runs under the scheduler cannot be
   tested, only observed in production. If the work arrived as a notebook, restructure it to run
   top to bottom in a fresh kernel — out-of-order state is the standing hazard, and a notebook that
   works only in the current session is not a job.

9. **Plan a backfill as its own change.** Which windows, in what order, what the write does to
   partitions that already hold rows, and what a consumer reads while it is half-done. Reconcile
   each window against the source as you go rather than at the end. Write to a separate target and
   swap where the destination supports it. Overwriting historic partitions in a table people are
   reading is destructive and outward-facing: present the window list, the overwrite semantics and
   the reconciliation plan, and ask before running it.

10. **Leave one standing assertion behind** — the freshness or volume check that fails when this
    stops working. Where it belongs and how it is written is `data-quality`; that it exists is
    this procedure's responsibility.

11. **Report with the words kept apart** — written, executed on a slice, backfilled, reconciled,
    deployed. This procedure exists partly because they get conflated, and "the job ran" is the
    weakest of them.

## Checklist

- [ ] Lineage traced to every reader, with the unenumerated ones named
- [ ] Grain, partition key, expected volume and freshness written down
- [ ] Event time chosen as the partition clock; timezone and boundary stated
- [ ] Allowed lateness set, and late data given a destination other than silence
- [ ] Second-run behaviour stated in one sentence, and it is not "duplicates"
- [ ] Work bounded per partition, with a durable cursor
- [ ] Problem reproduced on a slice and compared against the source
- [ ] Transform runnable on a fixture outside the scheduler
- [ ] Backfill windows reconciled individually; destructive overwrite left for the user to approve
- [ ] One standing assertion in place
- [ ] Windows still unreconciled named, not rounded away

## Failure handling

- **Counts disagree with the source** — that is the result. Report the window and the comparison
  query. Do not rerun over the top to make the numbers agree; that converts a known loss into an
  unknown mixture of loss and duplication.
- **A run half-completed** — resume from the cursor. With no cursor you cannot distinguish done
  windows from undone ones without a full comparison; say that rather than rerunning blind.
- **Late data keeps arriving after the window closes** — the lateness bound is wrong, not the data.
  Measure the actual arrival lag distribution before moving the bound.
- **The slice reconciles but the full run does not** — something is scale- or ordering-dependent.
  Do not extrapolate the slice's pass; report it as covering the slice only.
- **The source itself is unreadable or has changed shape** — stop. A pipeline reconciled against a
  source you cannot read is reconciled against nothing.

## Evidence to report

The lineage, including readers you could not enumerate. The contract as you found it and as you
left it. Per window touched: source count, output count, the additive sums compared, and the
reconciliation query verbatim. What a second run does. The backfill windows completed, and those
still outstanding. The assertion left behind, and what it fires on. Then the explicit list of
windows and consumers **not** checked.

Attribution

nahid-sparktalesnahid-sparktales
View sourceMore from nahid-sparktales →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1066601 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

686011 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

651 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →