office-document-editor

office-document-editor is a skill for Claude Code, Codex from guoliang1114-boop/AriaAI. It costs 114 tokens per session (2,372 once invoked), scanned A, original, MIT.

A tool for editing existing PowerPoint, Word, and Excel files directly in the project space.

In plain words
What is it for?
Use it to change slide text, Word sections or tables, Excel cells or formulas, and to add, remove, reorder, or reformat existing document content.
Why use it?
It lets an agent update document content, data, formulas, structure, or formatting without creating a new file from scratch.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to change slide text, Word sections or tables, Excel cells or formulas, and to add, remove, reorder, or reformat existing document content.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/guoliang1114-boop/ariaai/office-document-editor
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 guoliang1114-boop/AriaAI --skill office-document-editor
Clone the repo
git clone --depth 1 https://github.com/guoliang1114-boop/AriaAI

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 office-document-editor

README.md
[![agentmods](https://agentmods.dev/badge/skills/guoliang1114-boop/ariaai/office-document-editor/github.svg)](https://agentmods.dev/skills/guoliang1114-boop/ariaai/office-document-editor)
Your own site
<a href="https://agentmods.dev/skills/guoliang1114-boop/ariaai/office-document-editor"><img src="https://agentmods.dev/badge/skills/guoliang1114-boop/ariaai/office-document-editor/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 office-document-editor

Your own site · 80×15
<a href="https://agentmods.dev/skills/guoliang1114-boop/ariaai/office-document-editor"><img src="https://agentmods.dev/badge/skills/guoliang1114-boop/ariaai/office-document-editor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 114 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,372 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.00114 $0.02372
Opus 5 $0.00057 $0.01186
Sonnet 5 $0.00023 $0.00474
Haiku 4.5 $0.00011 $0.00237

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

Security

Grade A, and why

office-document-editor 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.

skills/office-document-editor/SKILL.md · 329 lines

How it starts

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

Office Document Editor

Edit existing Office documents (PPTX, DOCX, XLSX) in the project space using direct file manipulation.

When To Use

Use this Skill when the user wants to:

  • 修改现有 PPT 的页面内容、标题、数据
  • 更新 Word 文档的段落、章节、表格
  • 修改 Excel 的单元格、公式、行列
  • 给现有文档添加/删除内容
  • 修复格式问题

Do NOT use this Skill for creating brand new files. For new file creation, use write_project_office_document directly.

Tools

Tool Purpose
read_project_file Read existing file content to understand structure
edit_project_office_document Apply edits to existing PPTX/DOCX/XLSX files
write_project_office_document Only used when creating a new file from scratch

Workflow

1. Read    → read_project_file to understand file structure
2. Plan    → Identify what needs to change
3. Edit    → edit_project_office_document with specific edits
4. Confirm → Report changes to user

Step 1: Read the Existing File

Always read the file first to understand its structure:

read_project_file(project_id=X, action='read', file_id=Y)
  • PPTX: Returns slide-by-slide text with titles, body, layout info
  • DOCX: Returns section headings, paragraph text, table content
  • XLSX: Returns sheet names, cell values, structure

Step 2: Plan Modifications

After reading, outline the changes clearly:

修改计划:
- 第 3 页:标题从 "XXX" 改为 "YYY"
- 第 5 页:更新 body text
- Excel Sheet1:更新 B2:B10 的数据

Step 3: Apply Edits

Use edit_project_office_document to apply changes directly to the file.

PPTX Edit Actions

update_slide — Update slide title and/or content
{
  "file_id": 123,
  "edits": [
    {
      "action": "update_slide",
      "slide_index": 2,
      "title": "New Slide Title",
      "content": "- Point 1\n- Point 2\n- Point 3"
    }
  ]
}
update_text — Replace specific text on a slide
{
  "file_id": 123,
  "edits": [
    {
      "action": "update_text",
      "slide_index": 2,
      "old_text": "2023年数据",
      "new_text": "2024年数据"
    }
  ]
}

Read the full file on GitHub · 329 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 · 329 lines · 114 tokens per session scan A 9d8c31940df5

Subscribe to this mod's changes

office-document-editor is a skill published in the GitHub repository guoliang1114-boop/AriaAI (37 stars, last pushed today), licensed MIT. It adds 114 tokens to every session and 2,372 once invoked, about $0.0006 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

excel-ai-analyst

A method for reverse-engineering business Excel files that contain formulas. It treats columns as named values, formulas as calculations, and links between sheets as data paths.

zhanglunet/openworker-zh-localized · 219 tokens

library

A skill for managing WorkBuddy’s built-in library, which stores online documents, web links, data tables, dashboards, web pages, files, and shared spaces. It also supports publishing, collaboration, and file transfers.

crane-in-clear-sky/WorkWit-AI-Agent · 207 tokens

csv-data-analyzer

Analyzes CSV files and generates summary statistics.

skillberry-ai/runspace-agent · 13 tokens

transcribe-filing

Transcribe an insurance rate filing or internal rating manual into an OpenRater workbook, then validate, build, verify, and rate it through the OpenRater MCP tools. Use when the user shares a filing/manual (PDF or pages) and wants it executable — "build this filing", "digitize this rating manual", "make this rateable"…

vadim-filimonov/openrater · 102 tokens

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…

AgentTeam-TaichuAI/ScienceClaw · 201 tokens

file-handling

File handling patterns — S3/R2/Vercel Blob storage, PDF generation, CSV/Excel import-export, file streaming, presigned URLs, multipart upload. Use when implementing file uploads to cloud storage, generating documents, processing large files, or building download endpoints.

PIXARTSeu/Synapse · 58 tokens