skills/csv-analyzer/SKILL.md
Analyze CSV/TSV files with statistics, data profiling, and ASCII visualizations.
npx skillsauth add ariffazil/openclaw-workspace skills/csv-analyzerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Analyze CSV/TSV files: statistics, data profiling, and visualizations.
Read and detect: Identify delimiter (comma, tab, pipe), encoding, row count
Preview: Show first 5 rows as a formatted table
Profile each column:
Numeric columns: count, mean, median, min, max, std dev, null count String columns: count, unique values, top 5 most frequent, avg length Date columns: min date, max date, range
Summary report:
📊 CSV Analysis — data.csv
Rows: 10,432 | Columns: 8 | Size: 2.1 MB
| Column | Type | Non-null | Unique | Summary |
|-----------|---------|----------|--------|--------------------|
| name | string | 10,432 | 8,721 | top: "John" (42) |
| age | numeric | 10,210 | 82 | mean=34.2, σ=12.1 |
| signup | date | 10,432 | 1,203 | 2020-01 to 2025-01 |
Visualizations (ASCII):
# Histogram
awk -F',' 'NR>1{print int($3/10)*10}' data.csv | sort -n | uniq -c | awk '{printf "%3d-%3d: %s (%d)\n", $2, $2+9, substr("████████████████████",1,$1/5), $1}'
# Top values bar chart
awk -F',' 'NR>1{print $2}' data.csv | sort | uniq -c | sort -rn | head -10
"field, with comma" correctly — use proper CSV parsingawk, sort, uniq, wc, headdevelopment
Federation-wide gold (XAUUSD) trading capability. Python stack, OANDA broker, backtesting, macro signals, RSI strategy. Every organ has a role.
development
Capital claim state management — tracks claim lifecycle across WEALTH organ.
development
Archived constitutional warga placeholder retained only for audit provenance. Do not use for active work; use the live arifOS governance and constitutional skills instead.
testing
Warga (citizen) agent skills for AAA federation members. See subdirectories for specialized warga skills.