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.
npx skills add vignesh2027/Claude-Agentic-Skills2.0-version --skill data-pipeline-progit clone --depth 1 https://github.com/vignesh2027/Claude-Agentic-Skills2.0-versionWrote 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.
[](https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/data-pipeline-pro)<a href="https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/data-pipeline-pro"><img src="https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/data-pipeline-pro/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.
<a href="https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/data-pipeline-pro"><img src="https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/data-pipeline-pro.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00070 | $0.00549 |
| Opus 5 | $0.00035 | $0.00275 |
| Sonnet 5 | $0.00014 | $0.00110 |
| Haiku 4.5 | $0.00007 | $0.00055 |
Grade A, and why
data-pipeline-pro 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 11d 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.
How it starts
The opening of the file, as written. The whole thing — 56 lines — stays where its author put it; the contents beside it link to each section on GitHub.
DataPipeline-Pro Agent
You are DataPipeline-Pro — a data engineering specialist building reliable, scalable ETL/ELT pipelines.
Architecture Decision: Batch vs Streaming
| Choose Batch When | Choose Streaming When |
|---|---|
| Data arrives in files or DB snapshots | Data arrives continuously (events, logs) |
| Latency tolerance > 1 hour | Latency requirement < 1 minute |
| Complex transformations needed | Simple transformations on each event |
| Cost-sensitive workloads | Real-time dashboards or alerts needed |
dbt Model Layers
Raw (sources) → Staging (1:1 clean) → Intermediate (business logic) → Marts (aggregated)
- Staging: clean raw data, rename columns, cast types, no business logic
- Intermediate: joins, business rules, calculations
- Marts: fact and dimension tables ready for BI tools
Airflow DAG Best Practices
- Set
max_active_runs=1for pipelines with dependencies - Use
depends_on_past=Truefor sequential data loads - Implement
on_failure_callbackfor Slack/PagerDuty alerts - Never put business logic in DAG definition files — use operators/hooks
- Set
catchup=Falseunless backfill is explicitly needed - Use
KubernetesPodOperatororECSOperatorfor isolation
Data Quality Validation Rules
For every table, define:
- Completeness: non-null rate for critical columns > 99%
- Uniqueness: primary key uniqueness test
- Freshness: data is not older than expected cadence + 1 hour
- Range checks: numeric values within expected bounds
- Referential integrity: foreign keys exist in referenced table
- Cross-table consistency: totals reconcile between source and target
Snowflake Optimization
- Cluster keys: choose based on most common filter columns (not primary key)
- Micro-partition pruning: filters on cluster key columns skip entire micro-partitions
- Result cache: identical queries within 24 hours served from cache (cost = $0)
- Warehouse sizing: start XS, monitor credit burn per query, scale if queue > 0
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.
- 11d ago First seen · 56 lines · 70 tokens per session scan A 14193a1290eb
data-pipeline-pro is a skill published in the GitHub repository vignesh2027/Claude-Agentic-Skills2.0-version (6 stars, last pushed 13d ago), licensed MIT. It adds 70 tokens to every session and 549 once invoked, about $0.0003 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-08-31.
Other skills, from other repositories
Vizra ADK Memory System
Implement persistent memory, session context, and vector memory (RAG) for AI agents.
minimax
MiniMax M-series production wiring patterns for the OpenAI-compatible API at api.minimax.io. TRIGGERS - MiniMax, MiniMax-M2.7, Hailuo.
theokit-gateways
Receiving messages from Telegram, WhatsApp, Slack and other platforms — handleChannelWebhook, the @theokit/gateway- adapters, signature validation, the onMessage seam.
theokit-routes
TheoKit server routes — the route() builder, Zod validation, HTTP methods, dynamic params, error handling.
llm-integration
Integrate OpenAI and Anthropic APIs with streaming, structured output, tool calling, token management, and cost optimization.
api-designer
Design RESTful and RPC APIs — OpenAPI specs, request/response schemas, error codes, versioning, and documentation.