skills/skill-read-excel/SKILL.md
Parse XLS and XLSX workbooks into structured JSON with sheet metadata, named ranges, and formatted cell snapshots.
npx skillsauth add hasna/skills read-excelInstall 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.
Parse Excel workbooks from disk and return structured JSON for one or more sheets.
.xls and .xlsx# Parse all sheets
skill-read-excel --input ./forecast.xlsx
# Restrict to specific sheets
skill-read-excel --input ./ops.xls --sheets Summary,Costs
# Limit output and save it
skill-read-excel --input ./audit.xlsx --limit 100 --output ./audit.json
| Option | Description | Default |
|--------|-------------|---------|
| -i, --input <path> | Excel workbook to parse | required |
| -s, --sheets <list> | Comma-separated sheet names to include | all sheets |
| -l, --limit <n> | Limit rows returned per sheet | unlimited |
| -o, --output <path> | Save JSON result to a file | stdout |
| --help | Show usage | |
| --version | Show version | |
{
"input": "/absolute/path/to/workbook.xlsx",
"workbook": {
"sheetNames": ["Summary", "Data"],
"namedRanges": []
},
"sheets": [
{
"name": "Summary",
"index": 0,
"rowCount": 12,
"columnCount": 4,
"columns": ["month", "revenue", "cost"],
"rows": [
{ "month": "Jan", "revenue": 1000, "cost": 600 }
]
}
]
}
development
Fetch official brand assets from a website or brand name, then return logos, palette, typography, source metadata, and a clean asset manifest. Use when a user asks to find, extract, download, package, or normalize a brand's logo and visual identity assets.
tools
Generate hosted voiceover variants and short jingles
tools
Generate premium video highlight packages with clip plans, captions, thumbnails, chapter markers, social copy, edit decisions, and manifest metadata.
development
Generate premium API, unit, and browser test suite packages with runnable tests and coverage notes.