Methasit-Pun

29 mods across 1 repository, 1 stars between them.

data-lifecycle

02

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Umbrella skill for running a data project end-to-end through its lifecycle stages — discover sources → profile the data → architect the platform → build the medallion pipeline → refactor the code. Use this whenever the user is kicking off a new data project, asks "where do I start" or "what are the steps", or is…

1 1mo ago A 131 tokens

data-sourcing

03

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Data collection and readiness — the step BEFORE a pipeline exists. Catalog candidate data sources for an objective, rank each by importance/impact, and record where to get it (internal system vs. open/public dataset), how to access it, its refresh cadence, licensing, and readiness blockers. Use this skill whenever a…

1 1mo ago A 136 tokens

data-profiling

04

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Profile and map raw data BEFORE designing a schema. One-time exploratory analysis to learn the true shape of a dataset — row/column counts, null rates, cardinality, value distributions, ranges, data types, candidate keys, duplicates, referential relationships — then a source-to-target field mapping and an ER diagram.…

1 1mo ago A 151 tokens

data-modeling

05

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Umbrella skill for shaping data once it has landed — warehouse schema design (star/snowflake/OBT/SCD/grain), SQL for analytics (window functions, CTEs, optimization), dbt model layers/tests/macros/incrementals, and Python transforms (pandas/Polars/PySpark performance). Use this whenever the user is designing tables…

1 1mo ago A 0 tokens

dbt-patterns

06

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

The most important design decision in a dbt project is how to organize model layers. A clear layer structure means every model has exactly one place it belongs, and anyone reading the project can understand what each model does.

1 1mo ago A 143 tokens

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Pandas, Polars, and PySpark idioms for production data engineering — chunked reads, memory-safe transforms, vectorized operations, type optimization, and performance patterns. Use this skill whenever the user is writing a Python data transformation script and running into memory issues, slow performance, or…

1 1mo ago A 131 tokens

schema-design

08

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Data modeling for analytical workloads — star schema, snowflake schema, one big table (OBT), slowly changing dimensions (SCD), normalization tradeoffs, grain definition, and surrogate key strategies. Use this skill whenever the user is designing or reviewing a data warehouse schema, planning a fact/dimension table…

1 1mo ago A 143 tokens

sql-patterns

09

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Best-practice SQL for analytical workloads — window functions, CTEs, query optimization, partitioning strategies, and anti-patterns to avoid. Use this skill whenever the user is writing or reviewing a SQL query that goes beyond a basic SELECT, especially on BigQuery, Snowflake, Redshift, or DuckDB. Trigger on mentions…

1 1mo ago A 137 tokens

cloud-data-infra

10

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Umbrella skill for where data pipelines run and what they cost — AWS/GCP/Azure infrastructure (S3/GCS/ADLS layout, BigQuery/Redshift/Snowflake selection, IAM, managed-service choice, performance tuning) and cost control (bytes scanned, partition pruning, slot/credit management, storage tiering, budgets and alerts).…

1 1mo ago A 0 tokens

cloud-infra-data

11

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

AWS/GCP/Azure data infrastructure — S3/GCS/ADLS partitioning, BigQuery slot management, Redshift spectrum, Snowflake warehouses, IAM roles for data access, cost optimization, and managed service selection. Use this skill whenever the user is deploying a pipeline to cloud, choosing between managed data services…

1 1mo ago A 157 tokens

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Query cost analysis, partition pruning, slot reservation strategies, storage tiering, and cloud data warehouse cost reduction. Use this skill whenever the cloud data bill is unexpectedly high, a specific query is scanning too much data, the team wants to understand what's driving BigQuery/Snowflake/Redshift costs, or…

1 1mo ago A 137 tokens

data-architecture

13

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Objective-first data architecture design and decision framework. Establish the target object FIRST (BI, ML, or both), elicit requirements and constraints (cloud vs. on-prem, resource/compute budget, team skills, latency and freshness SLAs, compliance), then design the layered architecture and recommend a model …

1 1mo ago A 0 tokens

data-migration

14

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Moving data between systems safely — cutover planning, backfill strategies, dual-write patterns, validation, rollback procedures, and zero-downtime migration techniques. Use this skill whenever the team is migrating from one database or warehouse to another (MySQL → Snowflake, Redshift → BigQuery, on-prem → cloud)…

1 1mo ago A 160 tokens

data-pipelines

15

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Umbrella skill for moving data from source to destination — end-to-end ETL/ELT design, DAG orchestration, real-time streaming, and system-to-system migration. Use this whenever the user is building, scheduling, debugging, or migrating a pipeline and it isn't yet clear which sub-area dominates. This skill ROUTES to the…

1 1mo ago A 0 tokens

medallion-design

16

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Design a medallion (bronze/silver/gold) ETL architecture interactively, objective-first. List the available data, confirm the objective, then design GOLD first to match the objective and get the user to review it before moving down to silver, then bronze (top-down default) — or bronze-up if the user asks. Asks the…

1 1mo ago A 178 tokens

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Airflow/Prefect/Dagster DAG design — task dependencies, retries, SLAs, backfill strategies, sensors, and failure recovery. Use this skill whenever the user is building or debugging a scheduled pipeline with multiple steps, asking how to handle task failures, setting up retries or alerts, designing a DAG structure…

1 1mo ago A 145 tokens

pipeline-design

18

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Design ETL/ELT pipelines end-to-end — source connectors, extraction strategies, transform logic, load patterns, idempotency, scheduling, and error handling. Use this skill whenever the user is starting a new ingestion job, planning how data moves from a source (REST API, database, file, webhook, message queue) into a…

1 1mo ago A 136 tokens

streaming-patterns

19

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Kafka, Flink, Kinesis, and Spark Structured Streaming design — consumer groups, partitioning, exactly-once semantics, lag monitoring, windowing, and late-arriving data. Use this skill whenever the user needs real-time or near-real-time data processing, is redesigning a batch pipeline into streaming, asks about…

1 1mo ago A 143 tokens

data-contracts

20

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Define and enforce schema contracts between producer and consumer teams — field types, nullability, allowed values, versioning, breaking vs. non-breaking changes, and change detection patterns. Use this skill whenever two teams or services share a dataset and upstream changes keep breaking the downstream silently…

1 1mo ago A 152 tokens

data-governance

21

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Data lineage tracking, PII tagging, access control policies, data catalog metadata standards, retention policies, and audit logging for regulatory compliance. Use this skill whenever the company is subject to PDPA, GDPR, HIPAA, or any data privacy regulation, when an audit requires proof of who accesses what data…

1 1mo ago A 159 tokens

data-quality

22

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Write systematic data quality checks — validation rules, Great Expectations suites, dbt tests, anomaly detection, null/type/range/referential integrity assertions, and monitoring patterns for production pipelines. Use this skill whenever the user is dealing with bad data in a pipeline, setting up validation before or…

1 1mo ago A 126 tokens

data-reliability

23

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Umbrella skill for making data correct, trustworthy, and compliant — validation and quality checks (Great Expectations, dbt tests, anomaly/null/range/referential assertions), producer↔consumer schema contracts (versioning, breaking-change detection), and governance (PII tagging, lineage, access control, retention…

1 1mo ago A 0 tokens

Methasit-Pun/data_engineer_claude_skills

Skill Claude CodeCodex

Feature store patterns, training/serving skew prevention, feature pipelines for ML teams, point-in-time correct joins, and bridging data engineering with MLOps conventions. Use this skill whenever an ML team needs feature pipelines, when building a feature store or deciding whether to use one, when there's a…

1 1mo ago A 176 tokens