spreadsheets

spreadsheets is a skill for Claude Code, Codex from brightwave-inc/tidebreak. It costs 45 tokens per session (1,656 once invoked), scanned A, original, Apache-2.0.

A workflow for creating and safely inspecting Excel spreadsheet files. It uses Python for new workbooks and LibreOffice Calc for editing existing ones so formulas, formatting, charts, and other workbook parts can be preserved.

In plain words
What is it for?
It helps create XLSX workbooks, inspect existing files, edit them without rebuilding them destructively, recalculate formulas, and verify the final result.
Why use it?
Editing an existing Excel file with the wrong method can silently remove formulas, charts, styles, macros, and other data. The workflow adds checks before delivery.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/brightwave-inc/tidebreak/spreadsheets
Any agent
npx skills add brightwave-inc/tidebreak --skill spreadsheets
Clone the repo
git clone --depth 1 https://github.com/brightwave-inc/tidebreak

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 spreadsheets

README.md
[![agentmods](https://agentmods.dev/badge/skills/brightwave-inc/tidebreak/spreadsheets.svg)](https://agentmods.dev/skills/brightwave-inc/tidebreak/spreadsheets)
Your own site
<a href="https://agentmods.dev/skills/brightwave-inc/tidebreak/spreadsheets"><img src="https://agentmods.dev/badge/skills/brightwave-inc/tidebreak/spreadsheets.svg" alt="Measured on agentmods" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,656 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00045 $0.01656
Opus 5 $0.00023 $0.00828
Sonnet 5 $0.00009 $0.00331
Haiku 4.5 $0.00005 $0.00166

Measured 3d ago against content hash 6233e4f7eaf9, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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 3d 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.

skills/spreadsheets/SKILL.md · 155 lines

How it starts

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

Spreadsheets

Produce XLSX deliverables with openpyxl, and edit workbooks that already exist with LibreOffice Calc. Follow every section below before declaring a workbook done.

Never round-trip an existing workbook with openpyxl

openpyxl writes new workbooks. It never touches a file that already exists — not to change one number, not for a "quick value edit".

load_workbook(path) followed by .save(path) does not edit the file; it rebuilds it from the parts openpyxl models, and everything else is gone. In practice that means silently losing:

  • formula results the engine computed — openpyxl drops the cached values, so every formula reads as empty until someone opens the file in Excel
  • named ranges, pivot tables and their caches
  • charts, images, and shapes
  • conditional formatting and data validation
  • macros, custom styles, and sheet protection

None of this raises an error. The file saves, looks plausible in an inspection script, and hands the user a gutted copy of their own workbook.

Read-only inspection is fine and expected: load_workbook(path, read_only=True) or data_only=True, with no .save() anywhere near it. The bundled analyze_xlsx.py does exactly this.

Installing the library

Install the pinned dependency with its own exec call — commands have a bounded wall clock, and one pip invocation per package stays inside it:

python3 -m pip install --user openpyxl==3.1.5

Installs work only when this chat's network policy allows package managers, and they persist for the rest of the conversation. If an install is refused by policy, do not retry: tell the user to enable the package-manager network policy for this chat, and offer the closest format you can produce without the library (CSV) — only with their knowledge, never as a silent substitution. If a dependency cannot be installed at all, say so plainly instead of quietly delivering a lesser format.

Creating a new workbook

A workbook built from scratch is openpyxl's job, with the formula and layout rules below. Nothing in this section changes because of the edit path.

Read the full file on GitHub · 155 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. 3d ago First seen · 155 lines · 45 tokens per session scan A 6233e4f7eaf9

Subscribe to this mod's changes

spreadsheets is a skill published in the GitHub repository brightwave-inc/tidebreak (19 stars, last pushed 5d ago), licensed Apache-2.0. It adds 45 tokens to every session and 1,656 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-08-30.

Related

Other skills, from other repositories

tencent-docs

腾讯文档(docs.qq.com)-在线云文档平台,是创建、编辑、管理文档的首选 skill。涉及"新建/创建/编辑/读取/查看/搜索文档"、"保存文件"、"云文档"、"腾讯文档"、"docs.qq.com"等操作,请优先使用本 skill。支持能力:(1) 创建各类在线文档(文档/Word/Excel/幻灯片/思维导图/流程图/智能表格/收集表)(2) 管理知识库空间(创建空间、查询空间列表)(3) 管理空间节点、文件夹结构 (4) 读取/搜索文档内容 (5) 编辑操作智能表 (6) 编辑操作在线文档 (7) 文件管理(重命名、移动、删除、复制、导入导出)(8) 网页剪藏、本地文件/html/文档上云。.

Pinvou/pinvou-agent · 210 tokens

lark-base

【何时用:仅当用户明确指向飞书/Lark(发到飞书、飞书文档等)时使用;泛指做个文档或PPT或表格或方案默认走本地工具,不要误用飞书】飞书多维表格(Base)操作:建表、字段、记录、视图、统计、公式/lookup、表单、仪表盘、应用模式(BaseApp/AppMode 页面与组件)、Workspace 目录、workflow、角色权限;遇到 Base/多维表格/bitable、BaseApp/AppMode 或 /app/ 链接时使用。BaseApp 不走 lark-apps;文件导入转 lark-drive,认证/授权转 lark-shared。.

Pinvou/pinvou-agent · 166 tokens

visualizer

当用户要求数据可视化、做图表、生成看板、数据仪表盘、可视化报告、Excel/CSV 转图表、预算/销售/运营等指标分析页面、Chart.js 可视化时使用。只处理数据可视化任务;纯网页、banner、海报、简历等非数据图表设计任务应交给 visual-design。.

Pinvou/pinvou-agent · 85 tokens

google-sheets

Google Sheets via gws: read/write cells, append rows, structured batch edits.

Open-Curiosity/gini-agent · 21 tokens

doc-processor

当用户要生成 Word/Excel/PowerPoint、做文档格式转换(Markdown ↔ HTML ↔ DOCX ↔ PDF)、PDF 文本提取、读写 Excel、合并文档或批量转换时使用。.

ntygod/ZhiWei · 54 tokens

data-analyst

当用户要在内存中对 CSV / JSON / Excel 做数据加载、清洗、统计分析、假设检验、图表可视化或数据质量检查时使用。.

ntygod/ZhiWei · 45 tokens