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 agentmods add skills/yuyy2004/excel-skills/excel-splitnpx skills add YuYY2004/excel-skills --skill excel-splitgit clone --depth 1 https://github.com/YuYY2004/excel-skillsWrote 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/yuyy2004/excel-skills/excel-split)<a href="https://agentmods.dev/skills/yuyy2004/excel-skills/excel-split"><img src="https://agentmods.dev/badge/skills/yuyy2004/excel-skills/excel-split.svg" alt="Measured on agentmods" height="20"></a>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.00159 | $0.02124 |
| Opus 5 | $0.00079 | $0.01062 |
| Sonnet 5 | $0.00032 | $0.00425 |
| Haiku 4.5 | $0.00016 | $0.00212 |
Grade A, and why
excel-split 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 6d 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 — 201 lines — stays where its author put it; the contents beside it link to each section on GitHub.
This skill follows [[excel-safe-workflow]] four-step method. Grouping uses pandas, fan-out uses lxml iterparse single-scan multi-output. 本技能遵循 [[excel-safe-workflow]] 四步法。分组用 pandas,分流用 lxml iterparse 一次扫描多路输出。
Excel Split / Excel 拆分
功能
把一张大表按某列的值拆成 N 个独立文件。
总表 (33万行)
│
│ 按"申请人"拆分 Top 10
│
├── 上海诺基亚贝尔.xlsx (1859行)
├── 上海泰康网络.xlsx (1301行)
├── ... (8个)
└── 其他.xlsx (283145行)
第零步:需求解析
| 要素 | 用户说 | 默认值 |
|---|---|---|
| 拆分列 | "按申请人拆""按年份分" | 必须明确 |
| Top N | "前10个""最多的20个" | 20 |
| 输出目录 | "放到 split 文件夹" | {原文件名}_split_{列名}/ |
第一步:勘察
import pandas as pd
FILE = '目标文件.xlsx'
SPLIT_COL = '列名'
df = pd.read_excel(FILE)
counts = df[SPLIT_COL].value_counts()
print(f'总行数: {len(df)}, 唯一值: {len(counts)}')
print(f'Top 10:')
for k, v in counts.head(10).items():
print(f' {k}: {v} 行')
第二步:规划
- Top N 限制:唯一值太多时(>50),只拆 Top N,其余合并为"其他"
- 先压实:如果文件之前做过去重/筛选(有行号空隙),先压实再拆分,否则 pandas 扫描行数会偏高
- 输出目录:
{原文件名}_split/ - 文件命名:
{拆分值}.xlsx(自动清理非法字符)
第三步:执行
核心思路:一次 iterparse 流式解析 XML,按行分流到各输出缓冲区,避免重复解析。
import pandas as pd, zipfile, os, shutil, re, time
from lxml import etree
from collections import defaultdict
S_NS = 'http://schemas.openxmlformats.org/spreadsheetml/2006/main'
FILE = '目标文件.xlsx'
SPLIT_COL = '列名'
TOP_N = 20
OUTPUT_DIR = FILE.replace('.xlsx', f'_split_{SPLIT_COL}')
# ====== 3.1 pandas 分组 ======
print(f'[1/4] pandas 分组...')
df = pd.read_excel(FILE).dropna(how='all') # 去掉空行(如有间隙)
total = len(df)
counts = df[SPLIT_COL].value_counts()
top_keys = set(counts.head(TOP_N).index.tolist()) if len(counts) > TOP_N else set(counts.index)
row_to_file = {}
file_sizes = defaultdict(int)
for key in top_keys:
safe = str(key).replace('/', '_').replace('\\', '_').replace(':', '_')[:80]
indices = df.index[df[SPLIT_COL] == key].tolist()
for i in indices:
row_to_file[i + 2] = f'{safe}.xlsx'
file_sizes[f'{safe}.xlsx'] = len(indices)
other = df.index[~df[SPLIT_COL].isin(top_keys)].tolist()
if other:
for i in other:
row_to_file[i + 2] = '其他.xlsx'
file_sizes['其他.xlsx'] = len(other)
print(f' 将生成 {len(file_sizes)} 个文件')
# ====== 3.2 解压 ======
print(f'[2/4] 解压...')
TMP = FILE.replace('.xlsx', '_split_tmp')
if os.path.exists(TMP): shutil.rmtree(TMP)
os.makedirs(TMP)
with zipfile.ZipFile(FILE, 'r') as z:
z.extractall(TMP)
worksheets_dir = os.path.join(TMP, 'xl', 'worksheets')
orig_sheet = None
for sf in sorted(os.listdir(worksheets_dir)):
if sf.endswith('.xml') and sf.startswith('sheet'):
orig_sheet = os.path.join(worksheets_dir, sf)
break
# ====== 3.3 iterparse 流式分流 ======
print(f'[3/4] 流式分流...')
row_xml = defaultdict(list)
header_xml = []
tag = f'{{{S_NS}}}row'
for event, elem in etree.iterparse(orig_sheet, tag=tag):
r = int(elem.get('r'))
row_str = etree.tostring(elem, encoding='unicode')
if r == 1: # 表头行
header_xml.append(row_str)
elif r in row_to_file:
row_xml[row_to_file[r]].append(row_str)
elem.clear()
while elem.getprevious() is not None:
del elem.getparent()[0]
# ====== 3.4 生成输出文件 ======
print(f'[4/4] 生成输出文件...')
os.makedirs(OUTPUT_DIR, exist_ok=True)
# 构建 sheet XML 模板(<sheetData> 前后的结构)
tree_orig = etree.parse(orig_sheet, etree.XMLParser(huge_tree=True))
full_xml = etree.tostring(tree_orig.getroot(), encoding='unicode')
sd_start = full_xml.find('<sheetData')
sd_end = full_xml.find('</sheetData>')
prefix = full_xml[:sd_start]
suffix = full_xml[sd_end + len('</sheetData>'):]
for idx, (fname, rows) in enumerate(sorted(row_xml.items(), key=lambda x: -len(x[1]))):
fpath = os.path.join(OUTPUT_DIR, fname)
all_rows = ''.join(header_xml) + ''.join(rows)
new_xml = f'{prefix}<sheetData>{all_rows}</sheetData>{suffix}'
with open(orig_sheet, 'w', encoding='utf-8') as f:
f.write(new_xml)
with zipfile.ZipFile(fpath, 'w', zipfile.ZIP_DEFLATED) as zout:
for dirpath, _, filenames in os.walk(TMP):
for fn in filenames:
full = os.path.join(dirpath, fn)
zout.write(full, os.path.relpath(full, TMP).replace('\\', '/'))
shutil.rmtree(TMP)
print(f'完成,输出: {OUTPUT_DIR}/')
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.
- 6d ago First seen · 201 lines · 159 tokens per session scan A 6357a79eece2
excel-split is a skill published in the GitHub repository YuYY2004/excel-skills (2 stars, last pushed 1mo ago), licensed MIT. It adds 159 tokens to every session and 2,124 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-31.
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.
Excel工具
Skill "Excel工具" from XiaoMaColtAI/math-modeling-skill, covering excel 工具, 原则, 读取与写入, 第一行就是数据时必须显式使用 header=none。 and 公式重算.
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.…
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…
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.) …
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"…