From agent-skills
Read Excel .xlsx and macro-enabled .xlsm files with Go. Supports sheet selection, column filtering, CSV export, and keyword search.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agent-skills:xlsxThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use `${CLAUDE_SKILL_DIR}` to reference the Go file. Supports both `.xlsx` and `.xlsm` (macro-enabled, VBA not executed).
Use ${CLAUDE_SKILL_DIR} to reference the Go file. Supports both .xlsx and .xlsm (macro-enabled, VBA not executed).
go run ${CLAUDE_SKILL_DIR}/read_xlsx.go <file> [flags]
| Flag | Description |
|---|---|
--sheet <name> | Focus on a specific sheet |
--columns <c1,c2> | Filter to specific columns (case-insensitive) |
--rows <n> | Preview rows (default 5) |
--search <term> | Search keyword across all cells (case-insensitive) |
--csv | Export sheet to CSV (stdout) |
--csv-file <path> | Export sheet to CSV file |
--list-sheets | List sheet names and exit |
CSV export writes headers + all data rows (not just preview).
npx claudepluginhub bos-hieu/agent-skills --plugin agent-skillsOpens, creates, reads, analyzes, edits, validates, or fixes Excel (.xlsx, .xlsm), CSV, TSV files using Python, pandas, and direct XML manipulation with formula support.
Creates, reads, and modifies .xlsx/.xlsm/.csv files with formulas and formatting. Enforces financial model conventions: color coding, number formatting, and cell reference rules.
Creates, edits, analyzes XLSX spreadsheets (.xlsm, .csv, .tsv) with formulas, formatting, data visualization, and recalculation while preserving structure.