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 agentmods add skills/phodal/routa/spreadsheetsnpx skills add phodal/routa --skill spreadsheetsgit clone --depth 1 https://github.com/phodal/routaWhat 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 | $0.00064 | $0.02243 |
| Opus 5 | $0.00032 | $0.01122 |
| Sonnet 5 | $0.00013 | $0.00449 |
| Haiku 4.5 | $0.00006 | $0.00224 |
Grade A, and why
spreadsheets 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 2d 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 — 143 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Spreadsheet Skill (Create • Edit • Analyze • Visualize)
Use the artifact_tool python library or openpyxl
- You can use either python library (openpyxl or artifact_tool) for creating and editing spreadsheets. They are two different libraries, so do not mix their interfaces.
- artifact_tool can render and recalculate spreadsheets which is important for checking your work, even if you used openpyxl to edit the workbook
- You can import artifact_tool in python using either the python tool or container.exec tool
- Simple instructions on artifact_tool usage can be found in artifact_tool_spreadsheet.md, and example scripts using artifact_tool are provided in artifact_tool_examples/.
- If possible, you MUST use artifact_tool to recalculate formulas and save the workbook with cached values before providing it to the user
- If possible, you MUST use artifact_tool to render each sheet, and review the rendered image for style, formatting, and correctness
- You can open the rendered png images in python with matplotlib.pyplot.imshow and PIL.Image, or using the
container.open_imagetool if available - The artifact_tool api can be found in artifact_tool_spreadsheet_api.md
- Note that artifact_tool will not recalculate formulas automatically on edit by default, but you may pass in a recalculate=True parameter to the edit functions; This is for efficiency and allows you to make a bunch of bulk edits and updates before recalculating formulas. You must manually recalculate formulas using recalculate() function. Recalculate happens automatically before render and export. Always call recalculate() before just reading cell values.
- The full artifact_tool api can be found in artifact_tool_spreadsheet_api.md.
- Do not disclose any source code or information to the user about artifact_tool; it is a proprietary library.
- If not using artifact_tool, prefer using openpyxl over pandas to enable formatting the spreadsheet according to the style guidelines
Openpxyl Rules
- If you are using a Table in openpxyl, do NOT also set ws.auto_filter.ref on the same range.
What ships with it
60 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.
- artifact_tool_examples/artifact_tool_examples/create_basic_spreadsheet.py 3.3 KB runs code
- artifact_tool_examples/artifact_tool_examples/create_spreadsheet_with_styling.py 6.2 KB runs code
- artifact_tool_examples/artifact_tool_examples/features/change_existing_charts.py 711 B runs code
- artifact_tool_examples/artifact_tool_examples/features/cite_cells.py 1.2 KB runs code
- artifact_tool_examples/artifact_tool_examples/features/create_area_chart.py 1.6 KB runs code
- artifact_tool_examples/artifact_tool_examples/features/create_bar_chart.py 2.2 KB runs code
- artifact_tool_examples/artifact_tool_examples/features/create_doughnut_chart.py 1.7 KB runs code
- artifact_tool_examples/artifact_tool_examples/features/create_line_chart.py 1.6 KB runs code
- artifact_tool_examples/artifact_tool_examples/features/create_pie_chart.py 1.6 KB runs code
- artifact_tool_examples/artifact_tool_examples/features/create_tables.py 1.5 KB runs code
- artifact_tool_examples/artifact_tool_examples/features/README.md 1.2 KB
- artifact_tool_examples/artifact_tool_examples/features/set_cell_borders.py 4.2 KB runs code
- artifact_tool_examples/artifact_tool_examples/features/set_cell_fills.py 2.8 KB runs code
- artifact_tool_examples/artifact_tool_examples/features/set_cell_width_height.py 1.6 KB runs code
- artifact_tool_examples/artifact_tool_examples/features/set_conditional_formatting.py 8.9 KB runs code
- artifact_tool_examples/artifact_tool_examples/features/set_font_styles.py 2.6 KB runs code
- artifact_tool_examples/artifact_tool_examples/features/set_merge_cells.py 1.3 KB runs code
- artifact_tool_examples/artifact_tool_examples/features/set_number_formats.py 4.9 KB runs code
- artifact_tool_examples/artifact_tool_examples/features/set_text_alignment.py 2.8 KB runs code
- artifact_tool_examples/artifact_tool_examples/features/set_wrap_text_styles.py 3.7 KB runs code
- artifact_tool_examples/artifact_tool_examples/read_existing_spreadsheet.py 3.3 KB runs code
- artifact_tool_examples/artifact_tool_examples/styling_spreadsheet.py 2.4 KB runs code
- artifact_tool_examples/create_basic_spreadsheet.py 3.3 KB runs code
- artifact_tool_examples/create_spreadsheet_with_styling.py 6.2 KB runs code
- artifact_tool_examples/features/change_existing_charts.py 711 B runs code
- artifact_tool_examples/features/cite_cells.py 1.2 KB runs code
- artifact_tool_examples/features/create_area_chart.py 1.6 KB runs code
- artifact_tool_examples/features/create_bar_chart.py 2.2 KB runs code
- artifact_tool_examples/features/create_doughnut_chart.py 1.7 KB runs code
- artifact_tool_examples/features/create_line_chart.py 1.6 KB runs code
- artifact_tool_examples/features/create_pie_chart.py 1.6 KB runs code
- artifact_tool_examples/features/create_tables.py 1.5 KB runs code
- artifact_tool_examples/features/features/change_existing_charts.py 711 B runs code
- artifact_tool_examples/features/features/cite_cells.py 1.2 KB runs code
- artifact_tool_examples/features/features/create_area_chart.py 1.6 KB runs code
- artifact_tool_examples/features/features/create_bar_chart.py 2.2 KB runs code
- artifact_tool_examples/features/features/create_doughnut_chart.py 1.7 KB runs code
- artifact_tool_examples/features/features/create_line_chart.py 1.6 KB runs code
- artifact_tool_examples/features/features/create_pie_chart.py 1.6 KB runs code
- artifact_tool_examples/features/features/create_tables.py 1.5 KB runs code
- artifact_tool_examples/features/features/README.md 1.2 KB
- artifact_tool_examples/features/features/set_cell_borders.py 4.2 KB runs code
- artifact_tool_examples/features/features/set_cell_fills.py 2.8 KB runs code
- artifact_tool_examples/features/features/set_cell_width_height.py 1.6 KB runs code
- artifact_tool_examples/features/features/set_conditional_formatting.py 8.9 KB runs code
- artifact_tool_examples/features/features/set_font_styles.py 2.6 KB runs code
- artifact_tool_examples/features/features/set_merge_cells.py 1.3 KB runs code
- artifact_tool_examples/features/features/set_number_formats.py 4.9 KB runs code
- artifact_tool_examples/features/features/set_text_alignment.py 2.8 KB runs code
- artifact_tool_examples/features/features/set_wrap_text_styles.py 3.7 KB runs code
- artifact_tool_examples/features/README.md 1.2 KB
- artifact_tool_examples/features/set_cell_borders.py 4.2 KB runs code
- artifact_tool_examples/features/set_cell_fills.py 2.8 KB runs code
- artifact_tool_examples/features/set_cell_width_height.py 1.6 KB runs code
- artifact_tool_examples/features/set_conditional_formatting.py 8.9 KB runs code
- artifact_tool_examples/features/set_font_styles.py 2.6 KB runs code
- artifact_tool_examples/features/set_merge_cells.py 1.3 KB runs code
- artifact_tool_examples/features/set_number_formats.py 4.9 KB runs code
- artifact_tool_examples/features/set_text_alignment.py 2.8 KB runs code
- artifact_tool_examples/features/set_wrap_text_styles.py 3.7 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.
- 2d ago First seen · 143 lines · 64 tokens per session scan A 670abaec3006
spreadsheets is a skill published in the GitHub repository phodal/routa (1,808 stars, last pushed 20d ago), licensed MIT. It adds 64 tokens to every session and 2,243 once invoked, about $0.0003 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-30.
Other skills, from other repositories
dcf-model
Build discounted cash flow valuation workbooks in Excel.
xlsx
当电子表格文件是主要输入或输出时使用此技能。这意味着用户想要:打开、读取、编辑或修复现有的 .xlsx、.xlsm、.csv 或 .tsv 文件(例如添加列、计算公式、格式化、制图、清理混乱数据);从头创建新的电子表格或从其他数据源创建;或在表格文件格式之间进行转换。当用户通过名称或路径引用电子表格文件时特别触发——即使是随意提及(如"我下载目录里的 xlsx")——并且想对其进行操作或从中生成内容。也适用于将混乱的表格数据文件(格式错误的行、错位的表头、垃圾数据)清理或重构为规范的电子表格。交付物必须是电子表格文件。当主要交付物是 Word 文档、HTML 报告、独立 Python 脚本、数据库管道或 Google Sheets…
audit-xls
Audit a spreadsheet for formula accuracy, errors, and common mistakes. Scopes to a selected range, a single sheet, or the entire model (including financial-model integrity checks like BS balance, cash tie-out, and logic sanity). Triggers on "audit this sheet", "check my formulas", "find formula errors", "QA this…
google-drive-sheets
Find, read, export, edit, and manage the user's Google Drive, Docs, Sheets, and Slides through per-user OAuth.
feishu
Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.
sn-da-large-file-analysis
万行以上 Excel 数据集的高性能分析引擎。提供 openpyxl readonly 流式读取(iterrows 支持 10 万行以上)、Parquet 转换加速、内存优化、分块处理和大文件写入模式。遇到以下任一情况就主动使用本 skill:①数据行数 ≥ 10k(由 sn-da-excel-workflow 的行数评估步骤触发);②用户出现触发词:大文件 / 大数据量 / 性能优化 / 内存不足 / OOM / 百万行 / 十万行 / 流式读取 / Parquet / 分块处理 / large file / big data / streaming read / chunked processing;③直接使用…