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 malue-ai/dazee-small --skill excel-fixergit clone --depth 1 https://github.com/malue-ai/dazee-smallWrote 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/malue-ai/dazee-small/excel-fixer)<a href="https://agentmods.dev/skills/malue-ai/dazee-small/excel-fixer"><img src="https://agentmods.dev/badge/skills/malue-ai/dazee-small/excel-fixer/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/malue-ai/dazee-small/excel-fixer"><img src="https://agentmods.dev/badge/skills/malue-ai/dazee-small/excel-fixer.svg" alt="Reviewed on agentmods" width="80" 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.00027 | $0.01455 |
| Opus 5 | $0.00014 | $0.00727 |
| Sonnet 5 | $0.00005 | $0.00291 |
| Haiku 4.5 | $0.00003 | $0.00145 |
Grade A, and why
excel-fixer 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 8d 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 — 185 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Excel 格式修复
自动检测并修复 Excel/CSV 常见格式问题。
使用场景
- 用户说「这个表格打开乱码了」「帮我修一下这个 Excel」
- Excel 分析前预处理(自动清洗)
- 从外部导入的数据格式不规范
常见问题与修复
1. 编码乱码
import pandas as pd
import chardet
def fix_encoding(file_path):
"""检测并修复 CSV 编码"""
with open(file_path, 'rb') as f:
raw = f.read(10000)
detected = chardet.detect(raw)
encoding = detected['encoding']
# 尝试用检测到的编码读取
df = pd.read_csv(file_path, encoding=encoding)
# 保存为 UTF-8
output = file_path.replace('.csv', '_fixed.csv')
df.to_csv(output, encoding='utf-8-sig', index=False)
return output, encoding
2. 合并单元格拆分
from openpyxl import load_workbook
def unmerge_cells(file_path):
"""拆分合并单元格,向下填充值"""
wb = load_workbook(file_path)
ws = wb.active
# 记录合并区域
merged_ranges = list(ws.merged_cells.ranges)
for merged in merged_ranges:
# 获取合并区域左上角的值
top_left_value = ws.cell(merged.min_row, merged.min_col).value
# 取消合并
ws.unmerge_cells(str(merged))
# 向下填充
for row in range(merged.min_row, merged.max_row + 1):
for col in range(merged.min_col, merged.max_col + 1):
ws.cell(row, col, top_left_value)
output = file_path.replace('.xlsx', '_unmerged.xlsx')
wb.save(output)
return output, len(merged_ranges)
3. 重复表头检测
def fix_duplicate_headers(df):
"""检测并修复重复表头行"""
# 检查前几行是否与列名重复
header_like_rows = []
for i, row in df.head(5).iterrows():
match_count = sum(1 for v in row.values if str(v) in df.columns.tolist())
if match_count > len(df.columns) * 0.5:
header_like_rows.append(i)
if header_like_rows:
df = df.drop(header_like_rows).reset_index(drop=True)
return df, len(header_like_rows)
4. 数据类型不一致
def fix_column_types(df):
"""检测并修复列内数据类型不一致"""
fixes = []
for col in df.columns:
# 尝试转为数字
numeric = pd.to_numeric(df[col], errors='coerce')
non_null_ratio = numeric.notna().sum() / len(df)
if non_null_ratio > 0.8 and df[col].dtype == object:
# 80% 以上是数字,可能是数字列混入了文本
bad_rows = df[numeric.isna() & df[col].notna()]
fixes.append(f"列 '{col}': {len(bad_rows)} 行非数字值")
return fixes
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.
- 8d ago First seen · 185 lines · 27 tokens per session scan A 60b035e485c2
excel-fixer is a skill published in the GitHub repository malue-ai/dazee-small (36 stars, last pushed 5mo ago), licensed MIT. It adds 27 tokens to every session and 1,455 once invoked, about $0.0001 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
dcf-model
Build discounted cash flow valuation workbooks in Excel.
audit-xls
Audit a spreadsheet for formula accuracy, errors, and common mistakes. Scopes to a selected range, a single sheet, or the entire model (including financial-model integrity checks like BS balance, cash tie-out, and logic sanity). Triggers on "audit this sheet", "check my formulas", "find formula errors", "QA this…
google-drive-sheets
Find, read, export, edit, and manage the user's Google Drive, Docs, Sheets, and Slides through per-user OAuth.
feishu
Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.
excel-basic-statistics-and-routing
An Excel workflow for filtering grouped data, calculating averages, extracting row ranges, removing duplicates, and adding totals.
dynamic-percentage-and-large-file-analysis
An Excel analysis workflow that changes its file-processing approach based on file size and calculates selected values and percentages.