Spreadsheets

Create, edit, and verify Excel workbooks with formulas, formatting, charts, and tables.

Updated Sep 19, 2026
One-click install
npx skills add https://github.com/Ab0umar/selrs.cc.BU --skill spreadsheets-ab0umar
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: Spreadsheets
Source: https://github.com/Ab0umar/selrs.cc.BU/tree/main/.codex/plugins/cache/openai-primary-runtime/spreadsheets/26.423.10653/skills/spreadsheets
Command: npx skills add https://github.com/Ab0umar/selrs.cc.BU --skill spreadsheets-ab0umar

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires @oai/artifact-tool, and includes references (resource) and assets (resource) components.

What problem does it solve? Producing polished, correct spreadsheet artifacts (.xlsx, .csv, .tsv) requires careful handling of formulas, formatting, charts, and recalculation, which is error-prone when done manually or with ad hoc scripts. ## Core Features & Use Cases - Workbook Authoring and Editing: Build new workbooks or modify existing ones with bulk writes, formulas, tables, conditional formatting, data validation, and native Excel charts via the @oai/artifact-tool library. - Domain Templates: Apply specialized guidance for financial models, healthcare workbooks, marketing/advertising analysis, and scientific research data. - Verification Pipeline: Inspect key ranges, scan for formula errors (#REF!, #DIV/0!, etc.), and render sheets visually before exporting the final .xlsx. - Use Case: Ask for a DCF valuation model and receive a multi-sheet workbook with an executive summary, assumptions, forecast drivers, sensitivity tables, checks, and a sources/audit tab. ## Quick Start Use the Spreadsheets skill to build a quarterly budget workbook with a dashboard sheet, input assumptions, and a variance chart.

Frequently Asked Questions about Spreadsheets

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create an Excel workbook with formulas and charts?▼

Use the @oai/artifact-tool Workbook API to add sheets, bulk-write values and formulas, apply formatting, and add native Excel charts from bounded source ranges. Export the result with SpreadsheetFile.exportXlsx and save it as an .xlsx file.

How to edit an existing xlsx file without breaking formulas?▼

Import the workbook with SpreadsheetFile.importXlsx, inspect the target ranges first, then make minimal scoped edits. Extend dependent elements like conditional formatting ranges and chart source ranges when adding rows or columns.

What library does this skill use for spreadsheet generation?▼

It uses @oai/artifact-tool from the Codex workspace dependencies for authoring, editing, inspecting, rendering, and exporting .xlsx workbooks. Alternate libraries like openpyxl or xlsxwriter are only used if the user explicitly requests a fallback.

Does the spreadsheet skill support CSV and TSV files?▼

Yes, CSV text can be imported directly with Workbook.fromCSV, and the skill covers .xlsx, .xls, .csv, and .tsv formats. CSV data can be cleaned or analyzed with bundled Python libraries like pandas before workbook creation.

Why do formula errors like #REF! appear in generated workbooks?▼

Formula errors typically come from bad references, off-by-one ranges, or cross-sheet formulas written before the referenced sheet exists. The skill runs a regex error scan over the workbook and inspects key ranges to catch and fix these before export.

Can it build financial models like DCF or 3-statement models?▼

Yes, a dedicated financial models template covers DCF, valuation, 3-statement models, and sensitivity tables. It enforces conventions like blue inputs, black formulas, checks sheets, and a finance audit pass before final export.