Poco is a self-hosted collaborative AI workspace designed as an alternative to OpenClaw, with chat channels, task management, file handling, and a web interface. Its Claude Code–based agent works inside an isolated sandbox and can use project files, skills, MCP tools, and sub-agents.
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 poco-ai/poco-claw --skill minimax-xlsxgit clone --depth 1 https://github.com/poco-ai/poco-clawWrote 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/poco-ai/poco-claw/minimax-xlsx)<a href="https://agentmods.dev/skills/poco-ai/poco-claw/minimax-xlsx"><img src="https://agentmods.dev/badge/skills/poco-ai/poco-claw/minimax-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/poco-ai/poco-claw/minimax-xlsx"><img src="https://agentmods.dev/badge/skills/poco-ai/poco-claw/minimax-xlsx.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.00148 | $0.02157 |
| Opus 5 | $0.00074 | $0.01078 |
| Sonnet 5 | $0.00030 | $0.00431 |
| Haiku 4.5 | $0.00015 | $0.00216 |
Grade A, and why
minimax-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 11d 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.
This is a copy
100% identical to minimax-xlsx — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 139 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MiniMax XLSX Skill
Handle the request directly. Do NOT spawn sub-agents. Always write the output file the user requests.
Task Routing
| Task | Method | Guide |
|---|---|---|
| READ — analyze existing data | xlsx_reader.py + pandas |
references/read-analyze.md |
| CREATE — new xlsx from scratch | XML template | references/create.md + references/format.md |
| EDIT — modify existing xlsx | XML unpack→edit→pack | references/edit.md (+ format.md if styling needed) |
| FIX — repair broken formulas in existing xlsx | XML unpack→fix <f> nodes→pack |
references/fix.md |
| VALIDATE — check formulas | formula_check.py |
references/validate.md |
READ — Analyze data (read references/read-analyze.md first)
Start with xlsx_reader.py for structure discovery, then pandas for custom analysis. Never modify the source file.
Formatting rule: When the user specifies decimal places (e.g. "2 decimal places"), apply that format to ALL numeric values — use f'{v:.2f}' on every number. Never output 12875 when 12875.00 is required.
Aggregation rule: Always compute sums/means/counts directly from the DataFrame column — e.g. df['Revenue'].sum(). Never re-derive column values before aggregation.
CREATE — XML template (read references/create.md + references/format.md)
Copy templates/minimal_xlsx/ → edit XML directly → pack with xlsx_pack.py. Every derived value MUST be an Excel formula (<f>SUM(B2:B9)</f>), never a hardcoded number. Apply font colors per format.md.
EDIT — XML direct-edit (read references/edit.md first)
CRITICAL — EDIT INTEGRITY RULES:
- NEVER create a new
Workbook()for edit tasks. Always load the original file. - The output MUST contain the same sheets as the input (same names, same data).
- Only modify the specific cells the task asks for — everything else must be untouched.
- After saving output.xlsx, verify it: open with
xlsx_reader.pyorpandasand confirm the original sheet names and a sample of original data are present. If verification fails, you wrote the wrong file — fix it before delivering.
What ships with it
24 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.
- references/create.md 24 KB
- references/edit.md 24 KB
- references/fix.md 1.2 KB
- references/format.md 33 KB
- references/ooxml-cheatsheet.md 6.3 KB
- references/read-analyze.md 4.2 KB
- references/validate.md 29 KB
- scripts/formula_check.py 17 KB runs code
- scripts/libreoffice_recalc.py 9.2 KB runs code
- scripts/shared_strings_builder.py 5.1 KB runs code
- scripts/style_audit.py 22 KB runs code
- scripts/xlsx_add_column.py 14 KB runs code
- scripts/xlsx_insert_row.py 9.8 KB runs code
- scripts/xlsx_pack.py 2.9 KB runs code
- scripts/xlsx_reader.py 13 KB runs code
- scripts/xlsx_shift_rows.py 13 KB runs code
- scripts/xlsx_unpack.py 4.7 KB runs code
- templates/minimal_xlsx/_rels/.rels 309 B
- templates/minimal_xlsx/[Content_Types].xml 836 B
- templates/minimal_xlsx/xl/_rels/workbook.xml.rels 862 B
- templates/minimal_xlsx/xl/sharedStrings.xml 1.1 KB
- templates/minimal_xlsx/xl/styles.xml 8.2 KB
- templates/minimal_xlsx/xl/workbook.xml 1.1 KB
- templates/minimal_xlsx/xl/worksheets/sheet1.xml 2.5 KB
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.
- 11d ago First seen · 139 lines · 148 tokens per session scan A 4ffb70af6ccd
minimax-xlsx is a skill published in the GitHub repository poco-ai/poco-claw (1,352 stars, last pushed 1mo ago), licensed MIT. It adds 148 tokens to every session and 2,157 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to minimax-xlsx, differing in 0 lines, and is treated as a copy.
Other skills, from other repositories
ha-data-analytics
A local-first data-analysis and reporting skill for CSV and spreadsheet files. It produces decision-ready analyses and shareable offline reports while separating facts, calculations, interpretations, and recommendations.
office-xlsx
Use when the user asks to create, inspect, verify, analyze, format, or deliver Excel .xlsx workbooks, Google Sheets-targeted spreadsheet artifacts, trackers, budgets, models, tables, dashboards, formulas, CSV/TSV-to-XLSX conversions, or spreadsheet-ready data packs.
xlsx
Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or…
openakita/skills@xlsx
Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or…
openakita/skills@wecom-cli
WeCom (Enterprise WeChat) CLI - official open-source CLI tool from WeCom. Covers 7 business categories: Contacts, Todos, Meetings, Messages, Schedules, Documents, Smartsheets. Built in Rust for macOS/Linux/Windows. Use when user wants to operate WeCom resources.
excel-maker
Create, organize, improve, audit, and export Excel report workbooks from CSV or XLSX data.