skills/spreadsheets/SKILL.md
Use when CSV, TSV, or Excel (.xlsx) is the primary input/output: inspect, transform, validate, convert, recalc formulas, or create/fix spreadsheets. Do not trigger when tabular data is incidental.
npx skillsauth add paulrberg/agent-skills spreadsheetsInstall 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.
Handle tabular data with exact values, minimal diffs, local privacy, atomic writes, and structural validation.
decimal.Decimal or DuckDB DECIMAL(38, 18), never
binary floats.snake_case
headers, ISO dates, . decimals, and - nulls.=, +, or @ to prevent formula injection; a bare - null is exempt.Resolve bundled scripts relative to this SKILL.md, not the target repository.
| Task | Tool |
| ------------------------------------------ | --------------------------------------------- |
| First look / CSV or TSV structure | uv run scripts/peek.py <file> |
| Detailed local quality profile | uv run scripts/profile.py <file> |
| Counts, stats, frequencies, select, dedupe | qsv |
| Joins, pivots, aggregation, conversion | DuckDB with all_varchar = true |
| Exact row transforms | uv run Python, stdlib csv, Decimal |
| Any .xlsx/.xlsm input or output | read references/xlsx.md first |
| Exact transform and validation recipes | read references/recipes.md only when needed |
Prefer qsv --cache-threshold 0 where supported to avoid sidecar caches. When qsv stdout must remain TSV, use
-o out.tsv; do not rely on redirection because stdout defaults to CSV.
peek.py. For a no-shape-change edit, save its JSON report; for intentional row/schema
changes, record the expected resulting width and invariants.peek.py --strict --expect-like <before-report>;peek.py --strict --expect-columns <n> plus task-specific counts/keys;--house;uv run scripts/recalc.py <file.xlsx> and require success.Never hand-edit generated .pool.tsv, .annual.tsv, or Markdown reports. After source edits, run just tsv-check,
then just cli::write-changed. Cap private table output to counts and file references unless raw rows were explicitly
requested.
Completion requires the requested artifact, an intentional diff, atomic replacement where applicable, and structural plus domain-specific validation evidence.
development
Use when creating or substantially redesigning web interfaces, landing pages, dashboards, components, or other frontend UI where visual direction and implementation quality matter. Produces subject-specific art direction, accessible responsive code, and rendered visual verification.
development
Orchestrate one to five Sonnet subagents to implement an approved Claude Code plan.
tools
Open the CoinGecko historical-data page for a coin/date in Chromium via Chrome DevTools MCP.
tools
Orchestrate one to five Codex CLI agents to implement an approved Claude Code plan.