Excel xlsx
Skill LFTPadilla/agent-dev-kit/plugins/dev-skills/skills/excel-xlsx
Replicable agent development system: curated Claude Code/Codex skills + bootstrap for the external tools (GSD, caveman, ponytail) that complete the stack.
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.
One thing 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.
What its author says it does
Copied from the file, not written here
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.
SKILL.md
1.5 KB, 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.