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, headtesting
OpenClaw edge agent bridge — operational triage, doctor, restart, and A2A bridge routing for the federation edge (Telegram surface). USE WHEN: "openclaw unhealthy", "gateway down", "edge bot not responding", "a2a bridge disconnected", "watchdog tripped", "openclaw doctor", "openclaw restart". NOT for token/security audit — use FORGE-telegram-audit.
tools
Generate images, videos, TTS, voice clone, and music via MiniMax MCP server. Use when user asks to "draw", "generate image", "create picture", "make a photo", "text to image", "image generation".
testing
Single load-bearing constitutional-judgment skill. Routes all F1–F13, verdict, hold, seal, scope, authority and floor-check calls through the live arif_judge surface. Replaces 7 overlapping predecessors (arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge).
development
MANDATORY LSP grounding gate BEFORE any code mutation on .ts, .py, .js, .tsx, .jsx files. Forces the agent to read real-time compiler diagnostics and structural project context before editing — eliminating blind guesses and anchoring every mutation in F2 (TRUTH). Routes through arifOS kernel (:8088) for centralized gate logic.