Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add vasilyu1983/AI-Agents-public --skill document-xlsxgit clone --depth 1 https://github.com/vasilyu1983/AI-Agents-publicWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/vasilyu1983/ai-agents-public/document-xlsx)<a href="https://agentmods.dev/skills/vasilyu1983/ai-agents-public/document-xlsx"><img src="https://agentmods.dev/badge/skills/vasilyu1983/ai-agents-public/document-xlsx/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/vasilyu1983/ai-agents-public/document-xlsx"><img src="https://agentmods.dev/badge/skills/vasilyu1983/ai-agents-public/document-xlsx.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- Socket pass
- Snyk pass
- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00038 | $0.03687 |
| Opus 5 | $0.00019 | $0.01843 |
| Sonnet 5 | $0.00008 | $0.00737 |
| Haiku 4.5 | $0.00004 | $0.00369 |
Grade A, and why
document-xlsx scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 303 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Document XLSX Skill - Quick Reference
This skill enables creation, editing, inspection, and safe distribution of .xlsx workbooks. Use it for report exports, spreadsheet models, spreadsheet QA, workbook automation, and Excel-compatible deliverables.
Modern best practices (July 2026):
- Prefer Excel Tables over loose ranges.
- Separate inputs, calculations, and outputs.
- Treat spreadsheets as software: checks, owners, change control, and review loops.
- Treat untrusted workbooks as hostile: formulas, hyperlinks, external links, hidden content, and macros all need review.
- If workbooks are shared externally, include accessibility hygiene and run Excel's Accessibility Checker.
Core Decision Rules (2026)
- First decide the runtime: local file generation, cloud workbook automation, or workbook audit/sanitization.
- Default to table-first exports: headers in row 1, frozen header row, autofilter, named table, bounded ranges.
- For native pivots: use Office Scripts or Excel automation; for headless exports prefer pre-computed summary tables.
- Libraries usually write formulas, but Excel calculates them when the file opens. If server-side computed values are required, calculate them in code and write values.
XlsxWriteris write-only: it cannot open, read, or edit an existing.xlsxfile. If the task is "edit this workbook" rather than "create a new one," reach foropenpyxl(or ExcelJS in Node) instead — choosingXlsxWriterfor an edit task is a common non-expert mistake that fails immediately.- A formula written by
openpyxlorXlsxWriterhas no cached result until some calculation engine (Excel, LibreOffice headless, or a session-based tool such as xlwings) opens and recalculates the file. Reading that same file back withopenpyxl(..., data_only=True)before any recalculation returnsNone, not the computed value — this looks like a bug but is expected behavior. If a downstream step (pandas, another script, an LLM) needs the number immediately, compute it in Python and write the literal value, or write both the formula and a plausible cached value only if you can guarantee it matches. - ExcelJS is strong for workbook structure and styling, but it does not provide native chart generation; ExcelJS pivot-table support shipped as an experimental, limited feature only in recent 4.x releases — treat it as unstable and verify round-trip fidelity before relying on it in production.
openpyxlcan preserve VBA withkeep_vba=True, but this skill does not author or execute macros.- If ingesting untrusted workbooks with
openpyxl, default tokeep_links=Falseunless external links must be preserved. - For very large exports (hundreds of thousands of rows or more), default
openpyxlusage can balloon memory (a ~150MB source DataFrame has been observed using 2GB+ RAM with the default XML parser). Installlxmland useWorkbook(write_only=True)for writing orload_workbook(read_only=True)for reading — both stream rather than build a full in-memory tree, andlxmlalone materially cuts memory even outside those modes. Write-only workbooks can be saved exactly once; a secondsave()call raisesWorkbookAlreadySaved, so batch all writes before saving. - Row/column ceilings are fixed by the file format, not the library: 1,048,576 rows and 16,384 columns per worksheet. Exports approaching this need a pagination or multi-sheet strategy decided up front, not discovered at write time.
What ships with it
20 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- agents/openai.yaml 392 B
- assets/data-dashboard.md 20 KB
- assets/financial-report.md 18 KB
- assets/spreadsheet-model-review-checklist.md 3.5 KB
- data/sources.json 9.7 KB
- learnings.consolidated.md 589 B
- learnings.md 335 B
- references/excel-accessibility-compliance.md 2.5 KB
- references/excel-charts.md 13 KB
- references/excel-cloud-automation.md 2.9 KB
- references/excel-data-validation.md 5.4 KB
- references/excel-formatting.md 13 KB
- references/excel-formulas.md 9.5 KB
- references/excel-pivot-tables.md 6.5 KB
- references/excel-security-protection.md 6.5 KB
- references/excel-tables-structured-references.md 4.3 KB
- references/extraction-stack.md 1.1 KB
- scripts/xlsx_audit.py 11 KB runs code
- scripts/xlsx_export_report.py 3.7 KB runs code
- scripts/xlsx_sanitize.py 5.9 KB runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 303 lines · 38 tokens per session scan A 5f927591eaa7
document-xlsx is a skill published in the GitHub repository vasilyu1983/AI-Agents-public (87 stars, last pushed 10d ago), licensed MIT. It adds 38 tokens to every session and 3,687 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
xlsx
Create, read and edit Microsoft Excel .xlsx spreadsheets — data tables, formulas, multiple sheets, number formats, conditional formatting, charts, frozen panes and named ranges. Also covers reading an existing workbook to extract values or formulas, recalculating formulas so cached values are correct, converting to…
dev-document
Document generation (PDF, DOCX, XLSX, PPTX). Trigger when the user wants to create a document, generate a report, export to PDF/Word/Excel/PowerPoint, or produce an office file.
aetox-audit-xls
ตรวจเวิร์กบุ๊กที่คนอื่นทำมา ก่อนเชื่อตัวเลขในนั้นหรือส่งต่อให้ใครใช้ หา error, ค่าคงที่ฝังในสูตร, สูตรที่หลุดแพตเทิร์น, ช่วง SUM ที่ขาดแถว, สูตรที่ถูกวางทับด้วยค่า และงบที่ไม่บาลานซ์.
aetox-clean-data-xls
ล้างข้อมูลที่เละก่อนเอาไปคำนวณ รวมยอด หรือ pivot ช่องว่างหัวท้าย ตัวพิมพ์ไม่ตรงกัน ตัวเลขที่ถูกเก็บเป็นข้อความ วันที่คนละฟอร์แมตในคอลัมน์เดียว แถวซ้ำ และตัวอักษรเพี้ยน.
Google Sheets
Read, write, and manage Google Sheets spreadsheets.
instrument-data-to-allotrope
Convert laboratory instrument output files (PDF, CSV, Excel, TXT) to Allotrope Simple Model (ASM) JSON format or flattened 2D CSV. Use this skill when scientists need to standardize instrument data for LIMS systems, data lakes, or downstream analysis. Supports auto-detection of instrument types. Outputs include full…