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 skills add guoliang1114-boop/AriaAI --skill office-document-editorgit clone --depth 1 https://github.com/guoliang1114-boop/AriaAIWrote 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.
[](https://agentmods.dev/skills/guoliang1114-boop/ariaai/office-document-editor)<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.
<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>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once 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 |
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.
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年数据"
}
]
}
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.
- 12d ago First seen · 329 lines · 114 tokens per session scan A 9d8c31940df5
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.
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.
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.
csv-data-analyzer
Analyzes CSV files and generates summary statistics.
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"…
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…
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.