mit einem Klick
csv-tools
Parse and analyze CSV data
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Parse and analyze CSV data
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
Security assessment of a codebase — minimal mode for runner validation
Daily fetch from a fixed public allowlist; score against the user's interests file; cluster into themes; push the digest to the configured channel
Read-only retrieval over the daily-digest kept set. Slash-invoke with `/librarian <question>`; returns items verbatim with citations.
Math calculations and unit conversions
Analyze disk usage and find large files
Docker container management
| name | csv-tools |
| description | Parse and analyze CSV data |
| disable-model-invocation | false |
| permissions | {"tools":{"allow":["exec"]},"egress":{"mode":"deny"},"inference":{"allow":["*"]}} |
Work with CSV files using standard shell tools.
head -5 data.csvhead -1 data.csvwc -l data.csvcut -d',' -f1,3 data.csvawk -F',' '$3 > 100' data.csvsort -t',' -k2 -n data.csvcut -d',' -f2 data.csv | sort -ucut -d',' -f2 data.csv | sort | uniq -c | sort -rntail -n +2 data.csvnl -ba data.csvsed 's/,/\t/g' data.csv (CSV to TSV)python3 -c "
import csv, sys
reader = csv.DictReader(open('data.csv'))
for row in reader:
print(row)
" | head -10