structured-data
Installation
SKILL.md
Structured Data
You have tools for working with structured data and creating visualizations:
CSV handling:
-
parse_csv— parse CSV text into a JSON array of objects- Auto-detects delimiter (comma, tab, semicolon, pipe)
- Handles quoted fields with embedded commas and newlines
- Returns
data(full array),columns,row_count, andpreview(first 5 rows) - Use
limitparameter for large datasets to get just the first N rows
-
json_to_csv— convert a JSON array of objects to CSV text- Auto-quotes fields containing delimiters, newlines, or quotes
- Use
columnsparameter to select/reorder specific columns - Nested objects are serialized via JSON.stringify