excel-reader
Installation
SKILL.md
Excel Reader — Claude Skill
Read Excel workbooks via scripts/excel.py. Requires Python 3. Auto-installs openpyxl on first run.
Commands
| Command | Purpose | Example |
|---|---|---|
sheets |
List all sheets with row/column counts | python3 scripts/excel.py sheets data.xlsx |
headers |
Show first N rows (default 1) | python3 scripts/excel.py headers data.xlsx --rows 3 |
rows |
Extract row range | python3 scripts/excel.py rows data.xlsx 10-20 |
column |
Extract a column by name or index | python3 scripts/excel.py column data.xlsx "Email" |