python-data-engineering-and-pipeline-packaging

python-data-engineering-and-pipeline-packaging is a skill for Claude Code, Codex from vaquarkhan/data-engineering-agent-skills. It costs 51 tokens per session (679 once invoked), scanned A, original, MIT.

A guide to building maintainable data pipelines and operational tools in Python, including dependency management, packaging, and command-line entry points.

In plain words
What is it for?
Use it to structure ingestion, validation, orchestration, and PySpark jobs as reusable Python packages.
Why use it?
It helps turn loose scripts or notebooks into repeatable code that can be tested, deployed, and run safely.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/vaquarkhan/data-engineering-agent-skills/python-data-engineering-and-pipeline-packaging
Any agent
npx skills add vaquarkhan/data-engineering-agent-skills --skill python-data-engineering-and-pipeline-packaging
Clone the repo
git clone --depth 1 https://github.com/vaquarkhan/data-engineering-agent-skills

Made for: Claude Code, Codex.

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 python-data-engineering-and-pipeline-packaging

README.md
[![agentmods](https://agentmods.dev/badge/skills/vaquarkhan/data-engineering-agent-skills/python-data-engineering-and-pipeline-packaging.svg)](https://agentmods.dev/skills/vaquarkhan/data-engineering-agent-skills/python-data-engineering-and-pipeline-packaging)
Your own site
<a href="https://agentmods.dev/skills/vaquarkhan/data-engineering-agent-skills/python-data-engineering-and-pipeline-packaging"><img src="https://agentmods.dev/badge/skills/vaquarkhan/data-engineering-agent-skills/python-data-engineering-and-pipeline-packaging.svg" alt="Measured on agentmods" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 679 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00051 $0.00679
Opus 5 $0.00026 $0.00340
Sonnet 5 $0.00010 $0.00136
Haiku 4.5 $0.00005 $0.00068

Measured yesterday against content hash f73d7cf7ece4, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

python-data-engineering-and-pipeline-packaging 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.

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.

skills/python-data-engineering-and-pipeline-packaging/SKILL.md · 83 lines

How it starts

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

Python Data Engineering And Pipeline Packaging

Overview

Use this skill when Python is the main implementation language for data pipelines or operational data tooling. It helps agents structure jobs as maintainable packages instead of loose scripts, choose the right execution boundary, manage dependencies explicitly, and keep runtime behavior testable and production-safe.

When to Use

  • building or modifying Python data pipelines
  • packaging PySpark, ingestion, validation, or orchestration helper code
  • moving from notebooks or scripts into production-ready modules
  • managing dependency, environment, and runtime issues in Python
  • adding CLI entry points, test harnesses, or local development workflows

Do not treat a working script as a production design just because it runs once.

Workflow

  1. Define the role of the Python code. Clarify whether it is:

    • a single-node transform
    • a PySpark job entry point
    • an orchestration helper
    • a validation or reconciliation tool
    • an integration or extraction service
  2. Package logic into explicit modules. Prefer:

    • versioned packages
    • reusable modules
    • clear CLI or job entry points
    • isolated configuration
    • minimal hidden global state
  3. Make dependency management real. Define:

    • environment model
    • pinned dependency strategy
    • native or system dependency assumptions
    • compatibility with runtime platforms such as Airflow, Spark, or container images
  4. Keep runtime boundaries explicit. Decide:

    • what runs locally versus distributed
    • what belongs in orchestration versus the job package
    • how configuration, secrets, and environment values are supplied
    • how logs, retries, and exits behave operationally
  5. Prove the package is maintainable. Require:

    • targeted tests
    • representative input cases
    • type or interface clarity where useful
    • reproducible local execution

Common Rationalizations

Rationalization Reality
"It is only a small Python script." Small scripts often become critical pipeline entry points with no packaging or test discipline.
"We can keep the business logic in the DAG or notebook." Hidden logic in orchestration or notebook state becomes hard to test, reuse, and debug.
"Requirements are enough documentation." Dependency files do not explain runtime assumptions, entry points, or platform compatibility.

Read the full file on GitHub · 83 lines

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 · 83 lines · 51 tokens per session scan A f73d7cf7ece4

Subscribe to this mod's changes

python-data-engineering-and-pipeline-packaging is a skill published in the GitHub repository vaquarkhan/data-engineering-agent-skills (40 stars, last pushed 2mo ago), licensed MIT. It adds 51 tokens to every session and 679 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-09-03.

Related

Other skills, from other repositories

kafka-python-client

Scaffold a production-ready Python Kafka producer and consumer using confluent-kafka-python, with Schema Registry, graceful shutdown, idempotent producer, tests and a complete project layout. Discovers the target topic, partition count and registered JSON Schema directly from the live cluster via any attached Kafka…

lensesio/agentic-engineering-for-apache-kafka · 150 tokens

temporal-python-testing

Test Temporal workflows with pytest, time-skipping, and mocking strategies. Covers unit testing, integration testing, replay testing, and local development setup. Use when implementing Temporal workflow tests or debugging test failures.

wshobson/agents · 45 tokens

manimgl-best-practices

Trigger when: (1) User mentions "manimgl" or "ManimGL" or "3b1b manim", (2) Code contains from manimlib import , (3) User runs manimgl CLI commands, (4) Working with InteractiveScene, self.frame, self.embed(), ShowCreation(), or ManimGL-specific patterns. Best practices for ManimGL (Grant Sanderson's 3Blue1Brown…

calesthio/OpenMontage · 167 tokens

authoring-dags

Workflow and best practices for writing Apache Airflow DAGs. Use when creating a new DAG, write pipeline code, handling questions about DAG patterns and conventions or extending an existing DAG with a follow-up/downstream task. ANY request shaped like 'add a DAG named X', 'write a pipeline', 'add a task that runs…

astronomer/agents · 93 tokens

telnyx-numbers-python

Search, order, and manage phone numbers by location, features, and coverage.

team-telnyx/ai · 23 tokens

telnyx-ai-outbound-voice-python

End-to-end setup for making a Telnyx AI assistant call a phone number. Covers provisioning a phone number, creating a TeXML application, assigning the number, configuring telephony settings, whitelisting destination countries, and triggering outbound calls via scheduled events. Use this skill (not…

team-telnyx/ai · 97 tokens