devexpress-office-file-api-spreadsheet

devexpress-office-file-api-spreadsheet is a skill for Claude Code from DevExpress/agent-skills. It costs 152 tokens per session (5,068 once invoked), scanned A, original, MIT.

A .NET library for creating, reading, editing, and exporting Excel workbooks in code, without Microsoft Office. It supports files such as XLSX, XLS, XLSM, CSV, and TXT.

In plain words
What is it for?
Use it to import and modify spreadsheet data, format cells, calculate formulas, create charts and pivot tables, protect worksheets, configure printing, and export workbooks to PDF, HTML, or images.
Why use it?
It lets applications process spreadsheets on servers and in automated jobs, including changes that would otherwise require opening Excel.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: names the AskUserQuestion tool; mentions Claude Code.

Part of the dx-office-file-api plugin — 10 skills shipped together

Good fit Use it to import and modify spreadsheet data, format cells, calculate formulas, create charts and pivot tables, protect worksheets, configure printing, and export workbooks to PDF, HTML, or images.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/devexpress/agent-skills/devexpress-office-file-api-spreadsheet
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 DevExpress/agent-skills --skill devexpress-office-file-api-spreadsheet
Clone the repo
git clone --depth 1 https://github.com/DevExpress/agent-skills

Made for: Claude Code.

Or install dx-office-file-api, the plugin that ships this one along with the rest of its 10 skills.

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 devexpress-office-file-api-spreadsheet

README.md
[![agentmods](https://agentmods.dev/badge/skills/devexpress/agent-skills/devexpress-office-file-api-spreadsheet/github.svg)](https://agentmods.dev/skills/devexpress/agent-skills/devexpress-office-file-api-spreadsheet)
Your own site
<a href="https://agentmods.dev/skills/devexpress/agent-skills/devexpress-office-file-api-spreadsheet"><img src="https://agentmods.dev/badge/skills/devexpress/agent-skills/devexpress-office-file-api-spreadsheet/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 devexpress-office-file-api-spreadsheet

Your own site · 80×15
<a href="https://agentmods.dev/skills/devexpress/agent-skills/devexpress-office-file-api-spreadsheet"><img src="https://agentmods.dev/badge/skills/devexpress/agent-skills/devexpress-office-file-api-spreadsheet.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 152 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,068 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.00152 $0.05068
Opus 5 $0.00076 $0.02534
Sonnet 5 $0.00030 $0.01014
Haiku 4.5 $0.00015 $0.00507

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

Security

Grade A, and why

devexpress-office-file-api-spreadsheet 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 12d 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.

plugins/dx-office-file-api/skills/devexpress-office-file-api-spreadsheet/SKILL.md · 450 lines

How it starts

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

DevExpress Spreadsheet Document API

The Spreadsheet Document API is a non-visual .NET library for creating, loading, editing, and exporting spreadsheet documents (Excel workbooks) programmatically — without requiring Microsoft Office. It supports .xlsx, .xls, .xlsm, .csv, .txt formats and can export to PDF, HTML, and images.

When to Use This Skill

Use this skill when you need to:

  • Create Excel workbooks (.xlsx, .xls, .xlsm) programmatically without Microsoft Office
  • Read, parse, or extract data from existing .xlsx/.xls/.csv files
  • Modify existing spreadsheets (add data, change formatting, update formulas)
  • Apply cell formatting (fonts, colors, borders, number formats, conditional formatting)
  • Work with formulas and calculated values (SUM, VLOOKUP, IF, array formulas, UDFs)
  • Create and configure charts within spreadsheets (column, line, pie, scatter, pivot, Excel 2016)
  • Build pivot tables from worksheet data
  • Import data from arrays, collections, DataTables, or databases
  • Export spreadsheets to PDF, HTML, or images
  • Print spreadsheets or configure page setup and print titles
  • Protect workbooks or individual worksheets with passwords
  • Work with named ranges, tables (ListObjects), data validation, sparklines

Prerequisites & Installation

NuGet Packages

Package Purpose
DevExpress.Document.Processor Core spreadsheet processing (create, load, edit, save)

.NET (8/9/10+)

dotnet add package DevExpress.Document.Processor

.NET Framework (4.6.2+)

Install-Package DevExpress.Document.Processor

See references/getting-started-dotnet-fw.md for the full framework-specific guide.

Important: All DevExpress packages in a project must share the same version number. A valid DevExpress license is required.

Package Versions

Unless the user explicitly requests a specific version, always target the latest DevExpress release (v26.1 at the time of writing). dotnet add package <PackageName> without --version installs the latest stable version — prefer this form. Never pin an older version in project files, Dockerfiles, or CI/CD pipelines unless the user asks for it. This is especially important in integration scenarios (Docker, cloud deployments). All DevExpress.* packages in a project must share the same version.

Read the full file on GitHub · 450 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. 12d ago First seen · 450 lines · 152 tokens per session scan A 9904612a22fe

Subscribe to this mod's changes

devexpress-office-file-api-spreadsheet is a skill published in the GitHub repository DevExpress/agent-skills (53 stars, last pushed 25d ago), licensed MIT. It adds 152 tokens to every session and 5,068 once invoked, about $0.0008 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

Spreadsheets

Create, edit, analyze, and verify standalone spreadsheet files or Google Sheets-ready workbooks, including .xlsx, .xls, .csv, and .tsv. Do not use for live controlling Microsoft Excel app or a live Excel session.

rojim666/SztuCode · 52 tokens

tencent-docs-sheet-generation

A tool for creating a new Excel workbook (.xlsx) from written requirements or reference PDF, Word, or presentation files. It is for starting without an existing spreadsheet file.

rojim666/SztuCode · 118 tokens

tencent-local-office-edit

A local editing skill for opening, changing, creating, and saving Microsoft Office and WPS documents, spreadsheets, and presentations through a local editor service. It supports specified document formats but does not execute macros or edit PDFs.

rojim666/SztuCode · 233 tokens

tencent-docs

A tool for creating, editing, reading, searching, and managing files in personal Tencent Docs, an online document service for individual QQ or WeChat accounts. It supports documents, spreadsheets, slides, and other listed file types.

rojim666/SztuCode · 273 tokens

tencent-saas-docs

A tool for creating, editing, reading, searching, and managing documents in Tencent Docs Enterprise, an online document service for business accounts. It works with documents, spreadsheets, slides, diagrams, and related files when an enterprise account is available.

rojim666/SztuCode · 271 tokens

资料库

A workflow for managing WorkBuddy's shared content area, including online documents, structured tables, pages, links, and stored files. It supports content creation, organisation, sharing, collaboration, and light publishing.

rojim666/SztuCode · 208 tokens