Excel xlsx
Skill LFTPadilla/agent-dev-kit/plugins/dev-skills/skills/excel-xlsx
Create Microsoft Excel .xlsx spreadsheets from tables, CSV/TSV, Markdown tables, or JSON data. Use when the user asks for Excel, spreadsheet, .xlsx, tabla editable, budget, inventory, report table, calculations, or data they need to open/edit in Microsoft Excel.From its SKILL.md
npx -y skills add LFTPadilla/agent-dev-kit --skill excel-xlsxAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 2 commands, including `python3 scripts/create_xlsx.py --title "Sheet title" --input data.csv --output output.xlsx` and 1 more.
SKILL.md
1.5 KB, 307 tokens by cl100k_base, as published. Nobody here has run it
Excel XLSX
Use this skill when the user asks for an Excel spreadsheet or editable table.
Output
- Create a real
.xlsxfile, not plain text renamed as.xlsx. - Save it under the current workspace, preferably
workspace/,vault/, or the current conversation folder. - Use a clear filename ending in
.xlsx. - Reply with the file path and a short note about what was created.
Tool
python3 scripts/create_xlsx.py \
--title "Sheet title" \
--input data.csv \
--output output.xlsx
You can also pass data directly:
python3 scripts/create_xlsx.py \
--title "Cotizacion" \
--data "Item,Cantidad,Precio\nSilla,4,120000\nMesa,1,450000" \
--output cotizacion.xlsx
Input Formats
- CSV or TSV files.
- Markdown tables.
- JSON array of objects or array of arrays.
- Plain text tables separated by commas, tabs, semicolons, or pipes.
Guidance
- Put headers in the first row when the user gives categories or columns.
- For budgets, quotes, inventories, grades, schedules, or reports, include totals and clear column names when useful.
- Use formulas only when the user needs calculations and the formula is straightforward.
- If the user gives messy text, normalize it into a clean table instead of blocking.
What ships with it: 1 file
10.6 KB alongside SKILL.md, 1 of them executable
scripts/
- create_xlsx.pyruns10.6 KB