What problem does it solve? Getting external data into databases reliably requires handling many source types, formats, and failure modes. This Skill provides proven patterns and ready-to-use code for loading data from S3, GCS, APIs, files, and streaming platforms without building ingestion logic from scratch. ## Core Features & Use Cases - Multi-Source Ingestion Patterns: Covers batch file loading (CSV, JSON, Parquet, Excel), cloud storage (S3, GCS, Azure Blob), REST/GraphQL API feeds, streaming (Kafka, Kinesis, Pub/Sub), and Change Data Capture from databases. - Multi-Language Code Examples: Provides working implementations in Python (dlt, polars, boto3), TypeScript (AWS SDK, kafkajs, Hono), Rust, and Go. - Validation & Scaffolding Scripts: Includes scripts to validate CSV schemas, test S3 connectivity, and generate dlt pipeline scaffolds. - Use Case: You need to load daily CSV exports from an S3 bucket into PostgreSQL with deduplication and schema validation. This Skill gives you the chunked reading pattern, idempotency checks, and batch insert code to do it. ## Quick Start Ask the AI to build a data ingestion pipeline that loads CSV files from an S3 bucket into PostgreSQL with schema validation and incremental loading.