excel-orchestrate

excel-orchestrate is a skill for Claude Code, Codex from YuYY2004/excel-skills. It costs 452 tokens per session (1,681 once invoked), scanned A, original, MIT.

A coordinator for tasks involving Excel files and other spreadsheets. It breaks a request into smaller operations, selects the relevant spreadsheet tools, reports the planned changes, asks for confirmation, and summarizes the results.

In plain words
What is it for?
Use it to organize multi-step workbook tasks such as locating data, finding duplicates, filtering rows, validating values, inserting or deleting content, replacing values, and deduplicating records.
Why use it?
Complex spreadsheet requests can combine searching, filtering, editing, deleting, and validation. A staged workflow helps keep those operations understandable and reduces accidental changes.

Skill for Claude CodeCodex

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

Good fit Use it to organize multi-step workbook tasks such as locating data, finding duplicates, filtering rows, validating values, inserting or deleting content, replacing values, and deduplicating records.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/yuyy2004/excel-skills/excel-orchestrate
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 YuYY2004/excel-skills --skill excel-orchestrate
Clone the repo
git clone --depth 1 https://github.com/YuYY2004/excel-skills

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 excel-orchestrate

README.md
[![agentmods](https://agentmods.dev/badge/skills/yuyy2004/excel-skills/excel-orchestrate/github.svg)](https://agentmods.dev/skills/yuyy2004/excel-skills/excel-orchestrate)
Your own site
<a href="https://agentmods.dev/skills/yuyy2004/excel-skills/excel-orchestrate"><img src="https://agentmods.dev/badge/skills/yuyy2004/excel-skills/excel-orchestrate/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 excel-orchestrate

Your own site · 80×15
<a href="https://agentmods.dev/skills/yuyy2004/excel-skills/excel-orchestrate"><img src="https://agentmods.dev/badge/skills/yuyy2004/excel-skills/excel-orchestrate.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 452 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,681 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.
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.00452 $0.01681
Opus 5 $0.00226 $0.00840
Sonnet 5 $0.00090 $0.00336
Haiku 4.5 $0.00045 $0.00168

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

Security

Grade A, and why

excel-orchestrate 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 10d 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.

claude/skills/excel-orchestrate/SKILL.md · 137 lines

How it starts

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

This skill is a meta-skill — it does not directly operate on Excel, but orchestrates the existing 16 skills. Follows the "Decompose→Report→Confirm→Execute" four-step approach. 本技能是元技能——不直接操作 Excel,而是编排已有的 16 个技能。遵循"拆分→报告→确认→执行"四步。

Excel Task Orchestration / Excel 任务编排

Workflow / 工作流程

User Complex Requirements / 用户复杂需求
    │
    ▼
[0] Scout First / 勘察先行 → Call excel-scout to locate target columns, show current values
    │
    ▼
[1] Parse Requirements / 解析需求 → Match scout results, decompose into independent sub-tasks
    │
    ▼
[2] Match Skills / 匹配技能 → Each sub-task maps to an existing skill
    │
    ▼
[3] Output Report / 输出报告 → Table showing execution plan (order, skill, input, expected output)
    │
    ▼
[4] User Confirms / 用户确认 → After confirmation, call skills one by one
    │
    ▼
[5] Summarize Results / 汇总结果 → Report status after each step completes

已有技能速查 / Available Skills Quick Reference

分类 技能 能干什么
🔍 查 scout 操作前勘察——定位目标列、展示当前值
find-duplicates 扫描重复行
filter 按条件筛选行
validate 数据质量检查
🗑️ 删 delete 删除行/列
deduplicate 去重
✏️ 改 insert 插入行/列
replace 查找替换
mapping-replace 按映射表批量替换
regex-clean 正则清理(提取/删除/替换)
date-to-text 日期转文本
format 设置格式
📊 整 sort 排序
split 按列拆分文件
merge 合并多个文件
freeze 冻结窗格
📋 基 safe-workflow 安全四步法

拆分原则 / Decomposition Principles

  1. 依赖关系:合并/筛选在前,改值/格式化在后
  2. 文件来源:先搞定输入(merge),再处理内容
  3. 同类合并:多个 mapping-replace 可以一次 XML 处理完成
  4. 大文件优先 XML:>10MB 的行操作自动走 XML 方案
  5. 不可逆操作靠后:删除类操作确认后再执行

报告格式 / Report Format

任务拆分报告 / Task Decomposition Report
═══════════════

原始需求: [用户原话]

执行计划:
| 序号 | 步骤 | 技能 | 输入 | 预期输出 |
|------|------|------|------|------|
| 1 | 合并28个文件 | excel-merge | 1000万-5000万/ | 单一xlsx |
| 2 | 日期列插文本 | excel-date-to-text | 合并结果 | 6个新列 |
| 3 | 类型→数字 | excel-mapping-replace | 合并结果 | 列值替换 |
| 4 | 国别→代码 | excel-mapping-replace | 合并结果 | 列值替换 |
| 5 | 新兴产业清理 | excel-regex-clean | 合并结果 | 列值清理 |

预计耗时: ~30分钟
风险点: 合并时需处理sharedStrings引用断裂

确认执行? (yes/no)

Read the full file on GitHub · 137 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. 10d ago First seen · 137 lines · 452 tokens per session scan A 7f7b23795bec

Subscribe to this mod's changes

excel-orchestrate is a skill published in the GitHub repository YuYY2004/excel-skills (2 stars, last pushed 1mo ago), licensed MIT. It adds 452 tokens to every session and 1,681 once invoked, about $0.0023 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-31.

Related

Other skills, from other repositories

spreadsheets

Use when creating, reading, or fixing spreadsheets (.xlsx, .csv). Covers formulas, formatting, charts, data cleaning, and handling the messy real-world files that are not actually tabular.

nimadorostkar/Claude-Skills-collection · 43 tokens

Excel工具

A guide for using Excel tools to read, write, and recalculate spreadsheet files. It includes a rule for treating the first row as data when a spreadsheet has no column headings.

XiaoMaColtAI/math-modeling-skill · 25 tokens

huashu-data-pro

All-in-one data analysis and productivity assistant. Covers end-to-end workflows for data processing, analytical insights, report writing, PPT creation, and data visualisation. Always approaches tasks from an expert perspective — thinks one step ahead for the user. Proactively confirms with the user when uncertain.…

Biraj2004/huashu-skills-english · 153 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…

lingxling/awesome-skills-cn · 201 tokens

thinkcell

Generate, update, and automate think-cell charts and elements in PowerPoint and Excel. Use ANY time the user mentions think-cell, thinkcell, or .ppttc files, or asks to create/update PowerPoint charts following think-cell conventions (waterfall, Mekko, stacked column, Gantt, Harvey ball, scatter/bubble, etc.) …

zmazz/thinkcell · 213 tokens

bug-report-writer

Converts rough notes, casual descriptions, console errors, or quick observations into professional, complete bug reports — exported as a formatted Excel (.xlsx) file ready for Excel, Google Sheets, Jira, or Azure DevOps. Use this skill whenever the user mentions: "write a bug report", "log a bug", "report this issue"…

ShreyasBh02/AI-Skills-Collection · 186 tokens