skills/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
read-excel --input ./forecast.xlsx
# Restrict to specific sheets
read-excel --input ./ops.xls --sheets Summary,Costs
# Limit output and save it
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 }
]
}
]
}
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.
testing
Generate high-quality articles using parallel AI agents. Supports research, writing, and optional cover image generation. Write single articles or batch process multiple topics with configurable parallelism.
testing
Generate videos using OpenAI Sora, Minimax Hailuo, Gemini Veo, or Seedance through the hosted Skills runtime with provider-cost pricing.