What problem does it solve? Manually researching and filling in new data columns for large spreadsheets is slow and repetitive. This Skill automates CSV enrichment by generating a Python script that calls the Zo API for each row and writes results back incrementally. ## Core Features & Use Cases - AI-Generated Columns: Adds one or more new columns to any CSV based on a natural-language enrichment directive, with structured JSON schema output per row. - Row Filtering: Processes only rows matching an optional filter (e.g., "European countries only"), either via Python logic or prompt-based SKIP handling. - Idempotent Batch Processing: Runs up to 8 concurrent API calls, writes results to the CSV after each call, and safely resumes by skipping already-enriched rows. - Use Case: Given a CSV of countries, add an "estimated GDP 2025" column by having the script query the Zo API for each country and write values back in place. ## Quick Start Open a CSV file and ask Zo to enrich it with a new column, for example: "Enrich this CSV with 'capital city' for European countries only."