What problem does it solve? Pandas and NumPy fail when datasets exceed available RAM or when computations take too long on a single core. This Skill provides guidance for scaling existing Python data workflows to larger-than-memory datasets and multi-machine clusters using Dask. ## Core Features & Use Cases - Parallel DataFrames and Arrays: Scale pandas and NumPy operations across partitions and chunks with familiar APIs and lazy evaluation. - Unstructured Data Processing: Use Dask Bags to clean and transform JSON, logs, and text before converting to structured DataFrames. - Custom Distributed Workflows: Build dynamic task pipelines with Futures, actors, and distributed coordination primitives. - Use Case: You have 200 GB of CSV logs that crash pandas. Use this Skill to read them with dd.read_csv, filter and aggregate with groupby, and write the summary to Parquet without loading everything into memory. ## Quick Start Use the dask skill to read all CSV files in my data folder, filter invalid rows, and compute per-category averages without running out of memory.