
csv
โ 592by vercel ยท part of vercel-labs/bash-tool
Analyze and transform CSV data using bash tools
๐ฅ๐ฅ๐ฅโ VerifiedFreeQuick setup
๐งฐ Not standalone. This skill ships with vercel-labs/bash-tool and only works together with that tool โ install the tool first, then add this skill.
This is the playbook your agent receives when the skill activates โ you don't need to read it to use the skill, but it's here to audit before installing.
name: csv description: Analyze and transform CSV data using bash tools
CSV Processing Skill
Process CSV files using standard bash tools (awk, cut, sort, grep).
Available Scripts
analyze.sh
Get statistics and summary of a CSV file.
bash /skills/csv/scripts/analyze.sh data.csvfilter.sh
Filter rows where a column matches a value.
bash /skills/csv/scripts/filter.sh data.csv <column_number> <value>select.sh
Select specific columns from CSV.
bash /skills/csv/scripts/select.sh data.csv <col1,col2,col3>sort.sh
Sort CSV by a column.
bash /skills/csv/scripts/sort.sh data.csv <column_number> [--numeric] [--reverse]Examples
# Show CSV summary
bash /skills/csv/scripts/analyze.sh sales.csv
# Filter where column 3 equals "active"
bash /skills/csv/scripts/filter.sh users.csv 3 active
# Select columns 1, 2, and 4
bash /skills/csv/scripts/select.sh data.csv 1,2,4
# Sort by column 2 numerically in reverse
bash /skills/csv/scripts/sort.sh data.csv 2 --numeric --reverseCopy & paste โ that's it
npx skills add https://github.com/vercel-labs/bash-tool --skill csvRun this in your project โ your agent picks the skill up automatically.
No common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.
Licensed under MITโ you can use, modify, and redistribute it under that license's terms.