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 }
]
}
]
}
testing
Merge a GitHub pull request, merge when green, use a merge queue, or decide whether a pull request is mergeable. Use only for explicit merge intent, not ordinary review.
development
Generate premium performance audit reports for web apps, APIs, or SaaS surfaces with metrics, findings, budgets, remediation plans, and manifest metadata.
data-ai
Generate premium customer feedback reports from reviews, support tickets, surveys, call notes, or raw feedback with clusters, sentiment, root causes, roadmap recommendations, evidence, and manifest metadata.
development
Generate high-quality PDF documents from markdown, HTML, or templates