sn-da-non-spreadsheet-analysis
仓库创建 2026年4月14日最近提交 4 天前SkillHot 收录 20 天前
▸ 精选理由
适合批量文档抽取与报告分析,节省人工提取时间。
▸ 风险提示
处理用户文件可能含敏感信息;复杂格式解析可能不完美。
这个 Skill 做什么
解析 Word/PDF/PPT,提取表格、图表与文本并支持跨文档汇总分析。
把 Word/PDF/PPT 里的内容读干净:能把表格数字化、识别图表、抽取正文和格式信息(颜色、高亮、字号)、还支持跨多份文档汇总分析和对比。当用户上传 .docx/.pdf/.pptx 或要求“文档分析、提取表格/图表/发票/合同”等场景时会自动用到本技能。优势是针对三类文档做深度解析,不负责 Excel/CSV 或纯图片场景,能把非结构化文档变成可统计、可比的结构化数据。
▸ 展开 SKILL.md 英文原文
Word / PDF / PPT 文档解析与数据分析引擎。覆盖三类文件格式的全量提取、表格数值化、图表理解与跨文档汇总分析。**遇到以下任一情况就主动使用本 skill**:①用户上传或指定了 .docx / .doc / .pdf / .pptx / .ppt 文件并要求分析、提取或统计其中内容;②用户出现触发词:Word分析 / PDF解析 / PPT提取 / 文档分析 / 报告解析 / 幻灯片分析 / 发票提取 / 合同分析 / 文档统计 / 错别字 / 语病 / 字号检查 / 简历分析 / 多文档对比;③任务涉及从文档中提取表格、数值、图表、格式(颜色/高亮/字号)、组织架构、时间线等结构化信息。仅不用于:Excel/CSV 数据分析(使用 sn-da-excel-workflow)、纯图片分析(使用 sn-da-image-caption)。
4.8k
Stars
331
Forks
40
仓库内 Skill
+141
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/OpenSenseNova/SenseNova-Skills/main/skills/sn-da-non-spreadsheet-analysis/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/OpenSenseNova/SenseNova-Skills/main/skills/sn-da-non-spreadsheet-analysis/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Document Analysis Skill — Word / PDF / PPT
End-to-end workflow for Word, PDF, and PPT document parsing. Each format has
specific parsing pitfalls — follow the format-specific sub-skill exactly.
---
## Workflow
### Step 0 — Identify file type and input scope
```python
import os
input_path = "/mnt/data/..." # from user
# Detect single file vs directory (multi-file scenario)
if os.path.isdir(input_path):
all_files = [
os.path.join(input_path, f)
for f in os.listdir(input_path)
if f.lower().endswith(('.docx', '.doc', '.pdf', '.pptx', '.ppt'))
]
print(f"Found {len(all_files)} documents: {all_files}")
else:
all_files = [input_path]
# Route by extevia SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有