csv-llm-edit
Installation
SKILL.md
CSV LLM Edit
Python-based CSV editing with TOON conversion for token-efficient LLM calls.
TOON (Token-Oriented Object Notation) is a compact format that saves 30–60% tokens compared to JSON by declaring field names once and streaming rows as compact CSV-like lines.
Step 1: Determine the Workflow
Choose a workflow based on the task:
- Workflow A (Python-only): The edit logic is deterministic (create, append, filter, update, delete, sort, etc.) → Go to Step 2A.
- Workflow B (LLM-assisted): The edit requires language understanding or generation (classify, extract entities, enrich values, etc.) → Go to Step 2B.