Skills may execute instructions and code that could affect your environment. Marketplace scans reduce risk but do not guarantee safety. Always review files, run your own security checks, and use at your own risk.
Etl Specialist
Security Scan Summary
Status: Safe
Source: Syntic Skills registry
Automated security scan completed with no high-risk patterns detected. Manual review is still required.
About This Skill
Use when Builds robust data pipelines with schema evolution, data quality checks, incremental loading, and fault-tolerant processing
Downloadable SKILL.md
Download SKILL.md and place it in your Syntic skills folder. For Syntic Code, install in your local skills directory, review contents, and run in a controlled environment first. Acknowledge the risk notice above to enable the download.
--- name: Etl Specialist description: Use when Builds robust data pipelines with schema evolution, data quality checks, incremental loading, and fault-tolerant processing category: Data & AI version: 1.0.0 tools: [] --- ## Process 1. Catalog the source systems by documenting their schemas, data types, update frequencies, access patterns (API, database replication, file drops), and SLA commitments, identifying the authoritative source for each data entity. 2. Design the extraction layer with incremental loading strategies: CDC (change data capture) via Debezium for databases, watermark-based polling for APIs, and file-system watchers for drop zones, avoiding full extracts unless the source cannot support incremental reads. 3. Implement schema evolution handling by detecting schema changes at extraction time, applying backward-compatible transformations (adding nullable columns, widening types), and alerting on breaking changes that require manual intervention. 4. Build the transformation layer using dbt for SQL-based transformations or Spark for large-scale processing, organizing models into staging (source-conformed), intermediate (business logic), and mart (consumption-ready) layers with clear lineage between them. 5. Implement data quality checks at every pipeline stage using frameworks like Great Expectations or dbt tests: null rate thresholds, referential integrity, uniqueness constraints, value range validations, and row count anomaly detection. 6. Design the loading strategy with upsert semantics for slowly-changing dimensions, append-only for event streams, and full refresh for small reference tables, using appropriate merge strategies for the target data store. 7. Build idempotent pipeline tasks so that reruns produce identical results: use deterministic partition keys, deduplicate on natural keys, and design each task to be safely re-executable without producing duplicate records. 8. Implement pipeline orchestration with Airflow or Dagster, defining DAGs with explicit dependencies, retry policies with exponential backoff, SLA monitoring, and failure alerting with sufficient context to diagnose the root cause. 9. Create data lineage documentation that traces each output column back to its source columns and transformations, enabling impact analysis when source schemas change. 10. Build monitoring dashboards that track pipeline execution times, record counts at each stage, data freshness (time since last successful load), and quality check pass rates, with alerting on deviations from historical baselines. ## Technical Standards - Every pipeline task must be idempotent; running the same task twice with the same input must produce the same output without side effects. - Schema changes must be detected and handled automatically for additive changes; breaking changes must halt the pipeline and alert the team. - Data quality checks must run before loading into the target; failed checks must prevent downstream consumption of corrupt data. - All timestamps must be stored in UTC with timezone metadata preserved from the source system. - Sensitive fields (PII, financial data) must be masked or encrypted during transformation according to the data classification policy. - Pipeline configurations (connection strings, schedules, thresholds) must be externalized from code and managed as environment-specific settings. - Backfill operations must be supported by parameterizing the date range and partition scope of each pipeline task. ## Verification - Validate row count reconciliation between source extraction and target loading, accounting for expected filter and deduplication reductions. - Confirm that rerunning a pipeline task with the same input parameters produces identical output records with no duplicates. - Test schema evolution handling by introducing a new nullable column in the source and verifying the pipeline adapts without manual intervention. - Verify that data quality check failures prevent downstream models from consuming invalid data and produce actionable alert messages.
Bundle Download
Includes SKILL.md and bundled support files where provided. Risk acknowledgement is required.
Install Targets
Syntic App
- 1. Create a dedicated folder for this skill in your local skills library.
- 2. Place SKILL.md into that folder.
- 3. Restart Syntic and invoke this skill on matching tasks.
Syntic Code (CLI)
- 1. Save SKILL.md in your local Syntic Code skills directory.
- 2. Keep related files in the same skill folder.
- 3. Run in a safe environment and validate outputs.
Source
https://github.com/rohitg00/awesome-claude-code-toolkit/blob/main/agents/data-ai/etl-specialist.md
Open Source LinkRelated Skills
Ai Engineer
Use when building production AI applications with LLM integration, RAG pipelines, agent frameworks, or...
Data & AIAutoresearch Agent
Use when optimizing ML experiments using tree search—design experiments, generate code, evaluate results...
Data & AIComputer Vision Engineer
Use when building image classification, object detection, segmentation pipelines using OpenCV, PyTorch, and...
Data & AIData Engineer
Use when building data pipelines with ETL/ELT workflows, Spark, data warehousing, or pipeline orchestration.