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 XMZF-vAI/clerkbox --skill xlsxgit clone --depth 1 https://github.com/XMZF-vAI/clerkboxWrote 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/xmzf-vai/clerkbox/xlsx)<a href="https://agentmods.dev/skills/xmzf-vai/clerkbox/xlsx"><img src="https://agentmods.dev/badge/skills/xmzf-vai/clerkbox/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/xmzf-vai/clerkbox/xlsx"><img src="https://agentmods.dev/badge/skills/xmzf-vai/clerkbox/xlsx.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- 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.00201 | $0.02542 |
| Opus 5 | $0.00101 | $0.01271 |
| Sonnet 5 | $0.00040 | $0.00508 |
| Haiku 4.5 | $0.00020 | $0.00254 |
Grade A, and why
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 10d 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 — 238 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Spreadsheet Creation, Editing, and Analysis
You have access to multiple tools and workflows for working with .xlsx files — from reading and analysing data, through programmatic creation and editing, to formula recalculation and error checking.
Tooling Primer
| Library | Best for |
|---|---|
| pandas | Bulk data manipulation, statistical analysis, quick CSV↔XLSX conversion |
| openpyxl | Cell-level formatting, Excel formulas, charts, conditional formatting |
⛔ CRITICAL — Use Formulas, Never Hardcode Calculations
🚨 MANDATORY RULE — ZERO EXCEPTIONS 🚨
Every computed value must be an Excel formula, not a Python-calculated literal. This keeps the workbook dynamic and self-updating. Violations will produce stale, non-updating spreadsheets.
# ── WRONG — baking Python results into cells ──
total = df['Sales'].sum()
ws['B10'] = total # static 5000
growth = (df.iloc[-1]['Revenue'] - df.iloc[0]['Revenue']) / df.iloc[0]['Revenue']
ws['C5'] = growth # static 0.15
avg = sum(vals) / len(vals)
ws['D20'] = avg # static 42.5
# ── RIGHT — let Excel do the maths ──
ws['B10'] = '=SUM(B2:B9)'
ws['C5'] = '=(C4-C2)/C2'
ws['D20'] = '=AVERAGE(D2:D19)'
This rule applies to all calculations — sums, ratios, percentages, differences, etc.
Step-by-Step Workflow
- Pick a library — pandas for data; openpyxl for formatting / formulas.
- Open or create the workbook.
- Modify — add/edit data, formulas, and styles.
- Save to disk.
- Recalculate (mandatory when formulas are present):
python scripts/recalc.py output.xlsx - Inspect the JSON output and fix any errors:
status: "errors_found"→ seeerror_summaryfor types and locations.- Common errors:
#REF!(bad reference),#DIV/0!(zero denominator),#VALUE!(type mismatch),#NAME?(unknown function).
Reading & Analysing Data
import pandas as pd
df = pd.read_excel('file.xlsx') # first sheet
sheets = pd.read_excel('file.xlsx', sheet_name=None) # all sheets → dict
df.head(); df.info(); df.describe() # quick overview
df.to_excel('result.xlsx', index=False) # write back
What ships with it
3 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.
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.
- 10d ago First seen · 238 lines · 201 tokens per session scan A 481d0b8f71d0
xlsx is a skill published in the GitHub repository XMZF-vAI/clerkbox (7 stars, last pushed yesterday), licensed Apache-2.0. It adds 201 tokens to every session and 2,542 once invoked, about $0.0010 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-08-31.
Other skills, from other repositories
xlsx
Read, create, and convert Microsoft Excel (.xlsx) and CSV spreadsheets — extract sheets and tables to JSON, build workbooks from JSON/CSV, and export to PDF.
document-metadata-review
Inspect PDFs, DOCX, PPTX, and XLSX files for share-readiness, metadata, links, comments, and hidden content.
document-suite
A single document-processing toolkit for PDF, Word, Excel, PowerPoint, and Markdown files. It chooses a document-specific handler based on the file type or requested task.
document-skills/xlsx
Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify…
feishu-doc
Fetch content from Feishu (Lark) Wiki, Docs, Sheets, and Bitable. Automatically resolves Wiki URLs to real entities and converts content to Markdown.
office-router
Route Office requests into the correct xlsx, docx, or pptx workflow, while preferring Slidev for new presentation drafts unless .pptx is explicitly required.