Agent Skills
› XiaomingX/mimofan
› spreadsheets
spreadsheets
GitHub用于创建、编辑、分析和转换电子表格文件(如XLSX, CSV),支持数据清洗、公式计算、图表生成及格式调整,确保数据完整性与可审计性。
触发场景
用户请求处理Excel或CSV文件
需要生成包含公式或图表的电子表格报告
进行数据清洗或格式转换任务
安装
npx skills add XiaomingX/mimofan --skill spreadsheets -g -y
SKILL.md
Frontmatter
{
"name": "spreadsheets",
"description": "Create, edit, analyze, clean, or convert spreadsheets including XLSX, CSV, TSV, formulas, charts, and tabular reports."
}
Spreadsheets
Use this skill when the input or deliverable is a spreadsheet: .xlsx, .xlsm,
.csv, .tsv, or a table that should become one of those formats.
Workflow
- Identify whether the task is cleaning, analysis, formatting, charting, or workbook generation.
- Preserve source files. Write a new output workbook unless the user asked for an in-place edit.
- Use appropriate tools:
- Python
csvorpandasfor data cleaning and analysis openpyxlfor XLSX formulas, styles, tables, filters, freeze panes, and charts- LibreOffice only when conversion or recalculation is needed and available
- Python
- Keep raw data separate from summary sheets when that helps auditability.
- Use formulas when the workbook should remain interactive; use fixed values when the result must be stable and reproducible.
- Verify by loading the workbook, checking sheet names, row/column counts, formulas, and representative cell values. For CSV/TSV, check delimiters, quoting, headers, and row widths.
If dependencies are missing, ask before installing packages. Never silently drop rows, change date/time semantics, or coerce IDs with leading zeroes into numbers.
版本历史
- ccf85b9 当前 2026-08-08 08:00


