AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Verify Pipeline

skill-pol-cc-agentic-data-engineer-verify-pipeline · by pol-cc

Run a full health check across the MDS pipeline: ingestion (dlt/Airbyte) load status, BigQuery freshness per source, ingest reconciliation (source-vs-destination row counts), dbt model freshness, MCP server health, and raw-vs-staging row count integrity. Invoke when the user wants to confirm the pipeline is healthy or asks 'is everything working?

No reviews yet
0 installs
37 views
0.0% view→install

Install

$ agentstack add skill-pol-cc-agentic-data-engineer-verify-pipeline

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-pol-cc-agentic-data-engineer-verify-pipeline)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Verify Pipeline? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

verify-pipeline

> Status: v0.10.0 — references written; read-only health check operational. Ingest reconciliation is now a first-class layer (source-vs-destination row counts, dlt _dlt_loads freshness, sequence/gap checks) — mandatory after every dlt load to catch the silent data gap a mis-set incremental cursor leaves without crashing.

What this skill does

Runs deterministic checks across every layer of the MDS and produces a one-page report. Read-only — never modifies state. Safe to invoke at any time.

Preflight

if [ ! -f .agentic-data-engineer.json ]; then
  echo "[abort] not a managed MDS deployment"
  exit 1
fi

Checks performed

| Layer | Check | Pass criterion | |---|---|---| | Tailscale | tailscale status on the VPS via SSH | VPS reachable, all nodes online | | Ingestion (dlt/Airbyte) | dlt _dlt_loads last-load status + age per source (or Airbyte GET /jobs when stack.ingest == "airbyte") | Latest load completed within freshness_thresholds.green_hours (default 26h) | | BigQuery raw | __TABLES__ modification time per raw dataset | Updated within greenhours | | Ingest reconciliation | Source-vs-destination row count per source; dlt _dlt_loads status; sequence/gap check on monotonic keys | Destination matches source within reconciliation_tolerance (default 0); no sequence gaps; latest _dlt_loads.status = 0 | | BigQuery integrity | Row count raw. vs staging.stg_ | Difference within 0.5% (or configured threshold) | | dbt | target/run_results.json from last cron run via SSH | All models success, run completed within greenhours | | MCP (if configured) | GET /health on the MCP server endpoint | Returns 200 |

Reconciliation is the ingest-layer check dbt tests don't cover. dbt tests validate the transform (raw → staging → marts); reconciliation validates the ingest (source → raw). It is mandatory after every dlt load because dlt's failure mode is silent — a mis-set incremental cursor or broken paginator leaves a data gap without crashing, so freshness looks green while rows are missing. Only counting source against destination catches it. See [references/health-checks.md](references/health-checks.md) section 4.

Output

A markdown report with: per-source traffic-light status, last successful sync timestamp, dbt model freshness, integrity warnings, and a one-line global verdict.

The skill never auto-fixes. If a check fails, it points the user at [troubleshoot](../troubleshoot/SKILL.md).

References

  • [references/health-checks.md](references/health-checks.md) — the exact command(s) per layer, pass criteria, amber/red interpretation, and the full-sweep procedure
  • [references/report-format.md](references/report-format.md) — the markdown report template the skill emits, with filled examples
  • [../../shared-references/remote-control-model.md](../../shared-references/remote-control-model.md) — how the agent reaches the VPS over Tailscale SSH
  • [../create-mds/references/airbyte-install.md](../create-mds/references/airbyte-install.md) — for the API auth flow
  • [../../shared-references/ai-native-principles.md](../../shared-references/ai-native-principles.md) — principle 6 on observability

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.