xlsx-official

xlsx-official is a skill for Claude Code, Codex from XiaomiMiMo/MiMo-Code. It costs 193 tokens per session (3,081 once invoked), scanned A, original, MIT.

A toolkit for reading, cleaning, analysing, and editing spreadsheet files such as Excel workbooks, CSV files, and TSV files.

In plain words
What is it for?
Use it to build or edit workbooks, read spreadsheet data, clean and aggregate tables, refresh formulas, and perform deeper workbook edits.
Why use it?
It helps preserve spreadsheet structure and formulas while making controlled changes or transforming tabular data.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it to build or edit workbooks, read spreadsheet data, clean and aggregate tables, refresh formulas, and perform deeper workbook edits.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/xiaomimimo/mimo-code/xlsx-official
About the project

MiMoCode is a terminal-based AI coding assistant that reads and writes code, runs commands, manages Git, and remembers project context across sessions. Developers use it to work with software projects through a command-line interface and connect it to language-model providers; the catalogue includes skills and instructions for it.

XiaomiMiMo/MiMo-Code · 12,997 stars · on GitHub · mimo.xiaomi.com

Install

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.

Any agent
npx skills add XiaomiMiMo/MiMo-Code --skill xlsx-official
Clone the repo
git clone --depth 1 https://github.com/XiaomiMiMo/MiMo-Code

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for xlsx-official

README.md
[![agentmods](https://agentmods.dev/badge/skills/xiaomimimo/mimo-code/xlsx-official/github.svg)](https://agentmods.dev/skills/xiaomimimo/mimo-code/xlsx-official)
Your own site
<a href="https://agentmods.dev/skills/xiaomimimo/mimo-code/xlsx-official"><img src="https://agentmods.dev/badge/skills/xiaomimimo/mimo-code/xlsx-official/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.

agentmods 80×15 button for xlsx-official

Your own site · 80×15
<a href="https://agentmods.dev/skills/xiaomimimo/mimo-code/xlsx-official"><img src="https://agentmods.dev/badge/skills/xiaomimimo/mimo-code/xlsx-official.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 193 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,081 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00193 $0.03081
Opus 5 $0.00097 $0.01541
Sonnet 5 $0.00039 $0.00616
Haiku 4.5 $0.00019 $0.00308

Measured 6d ago against content hash 1589e7ea3ad8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

xlsx-official 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 6d ago.

The scan reads SKILL.md. This mod also ships 9 executable files (scripts/assemble.py, scripts/audit.py, scripts/bake.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

packages/opencode/src/skill/builtin/.bundle/xlsx-official/SKILL.md · 219 lines

How it starts

The opening of the file, as written. The whole thing — 219 lines — stays where its author put it; the contents beside it link to each section on GitHub.

XLSX Skill

An Apache-2.0 toolkit for producing, editing, and reading Microsoft Excel (.xlsx) files. Written from scratch against the public ECMA-376 / ISO/IEC 29500 (SpreadsheetML) specification and built on permissively-licensed tooling (openpyxl MIT, pandas BSD-3-Clause, lxml BSD-3-Clause, optional xlsxwriter BSD-2-Clause, optional external binary soffice MPL 2.0) so it can be reused in commercial projects without restriction.

Decision matrix

Situation Path Read first
Build a workbook from a prompt / dataframe / raw values Author with openpyxl (formulas + formatting) or pandas (bulk data) create.md
Edit an existing .xlsx — add rows, patch cells, refresh formulas Load with openpyxl, preserve formulas & styles edit.md
Only need to read the data out (analysis, ETL, quick QA) pandas.read_excel + openpyxl for structural inspection read.md
Clean, aggregate, or transform tabular data before writing back pandas pipeline, then hand back to openpyxl for final polish analyze.md
Deep structural edits (custom XML parts, defined names, VBA-free surgery) Unpack → edit XML → repack edit.mdRaw XML workflow
Recompute formula values before shipping scripts/bake.py via LibreOffice see QA below

If the task mixes several of these, do them in this order: read → plan → edit/create → recalc → validate.

One-time environment setup

Bundled runtime: when the MIMO_PYTHON environment variable is set, skip the pip installs below — run every command with python3/uv run replaced by "$MIMO_PYTHON" (e.g. "$MIMO_PYTHON" scripts/overview.py book.xlsx). openpyxl/pandas/lxml/xlsxwriter are preinstalled in that interpreter; pip console scripts are unavailable, so always go through "$MIMO_PYTHON" -m <module>. A bundled LibreOffice (for bake.py/pdf_out.py) is exposed as MIMO_SOFFICE and picked up automatically.

Read the full file on GitHub · 219 lines

Changes

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.

  1. 6d ago First seen · 219 lines · 193 tokens per session scan A 1589e7ea3ad8

Subscribe to this mod's changes

xlsx-official is a skill published in the GitHub repository XiaomiMiMo/MiMo-Code (12,997 stars, last pushed yesterday), licensed MIT. It adds 193 tokens to every session and 3,081 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-09-03.

Related

Other skills, from other repositories

officecli-financial-model

Use this skill when the user wants to build a financial model — 3-statement model, DCF valuation, LBO, SaaS unit economics, sensitivity / scenario analysis, debt schedule, or fundraising projections — in Excel. Trigger on: 'financial model', '3-statement model', 'P&L + BS + CF', 'DCF', 'WACC', 'NPV', 'terminal value'…

iOfficeAI/OfficeCLI · 222 tokens

officecli-data-dashboard

Use this skill to build a multi-element Excel dashboard — Dashboard sheet on open, multiple formula-driven KPI cards, multiple charts, sparklines, and conditional formatting — from CSV or tabular input. Trigger on: 'dashboard', 'KPI dashboard', 'analytics dashboard', 'executive dashboard', 'metrics dashboard', 'CSV to…

iOfficeAI/OfficeCLI · 157 tokens

officecli-xlsx

Use this skill any time a .xlsx file is involved -- as input, output, or both. This includes: creating spreadsheets, financial models, dashboards, or trackers; reading, parsing, or extracting data from any .xlsx file; editing, modifying, or updating existing workbooks; working with formulas, charts, pivot tables, or…

iOfficeAI/OfficeCLI · 119 tokens

officecli

Create, analyze, proofread, and modify Office documents (.docx, .xlsx, .pptx) using the officecli CLI tool. Use when the user wants to create, inspect, check formatting, find issues, add charts, or modify Office documents.

iOfficeAI/OfficeCLI · 56 tokens

gws-sheets

Google Sheets: Read and write spreadsheets.

googleworkspace/cli · 13 tokens

gws-sheets-append

Google Sheets: Append a row to a spreadsheet.

googleworkspace/cli · 17 tokens