بنقرة واحدة
ppt-analysis
PPT (.pptx/.ppt) 全量解析。覆盖:所有 slide 文本/表格/图表提取、嵌入图片 caption、纯图片 slide 渲染识别、数据标签提取。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
PPT (.pptx/.ppt) 全量解析。覆盖:所有 slide 文本/表格/图表提取、嵌入图片 caption、纯图片 slide 渲染识别、数据标签提取。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Base-layer skill for the SenseNova-Skills project, providing low-level APIs for image generation, recognition (VLM), and text optimization (LLM). This skill does not preprocess inputs; it only calls backend services and returns results. This skill is not user-facing and is intended for upper-layer skills only.
用于用户请求深度研究、系统性研究、竞品分析、方案对比、趋势分析或事实核查时。**遇到以下任一情况就主动使用本 skill,不要自行搜几条就回答**:①用户出现触发词:深度研究 / 深度调研 / 深入研究 / 全面研究 / 系统研究 / 调研 / 调查 / 尽调 / 行业研究 / 市场研究 / 竞品分析 / 政策研究 / 技术研究 / 趋势研究 / 事实核查 / 写一份研究报告 / 调研报告 / 深度报告 / research / deep research;②请求需要跨多来源取证、多维度对比、交叉验证才能给出可靠结论;③用户要求产出报告、白皮书、行业分析或尽调文档;④话题涉及最新政策/市场/产品/价格/法规,需要系统核查。明确要求核验来源的单点事实可走 quick;无核验要求的简单常识问答不使用。模糊或宽泛的"研究/了解一下 X"也优先触发。仅不用于:一句话摘要、已给定单一来源的整理、纯文字润色改写。
用于研究任务的最终呈现形式未知时。比较研究报告、学术论文、表格优先报表、决策备忘录或自定义形式,并用权威标准与真实范例支持推荐。
用于搜索中文社交平台。脚本入口覆盖 B站视频、知乎问答和抖音视频;小红书、微博当前没有脚本入口,只能通过 browser-use / 公开网页兜底。
搜索社区、社媒、新闻热点、百科趋势、开发者生态和技术讨论时使用。
用于学术调研、论文精读、相关工作梳理、百科知识查询和引用链追溯。
| name | ppt-analysis |
| description | PPT (.pptx/.ppt) 全量解析。覆盖:所有 slide 文本/表格/图表提取、嵌入图片 caption、纯图片 slide 渲染识别、数据标签提取。 |
from pptx import Presentation
from pptx.util import Inches
import os, subprocess, json
# python-pptx is available
# For .ppt (old binary format): convert via libreoffice
def load_pptx(path):
if path.lower().endswith('.ppt'):
import subprocess
out_dir = os.path.dirname(path)
subprocess.run(
['libreoffice', '--headless', '--convert-to', 'pptx', '--outdir', out_dir, path],
check=True, capture_output=True
)
path = path.rsplit('.', 1)[0] + '.pptx'
return Presentation(path), path
def extract_all_slides_text(pptx_path):
"""
Extract text from every slide: text frames, tables, chart titles.
For slides with no extractable text, flag them for image captioning.
"""
prs, _ = load_pptx(pptx_path)
slides_data = []
for slide_num, slide in enumerate(prs.slides, start=1):
slide_texts = []
has_text = False
for shape in slide.shapes:
# Text frame (most common)
if shape.has_text_frame:
for para in shape.text_frame.paragraphs:
text = para.text.strip()
if text:
slide_texts.append(text)
has_text = True
# Table
if shape.has_table:
tbl = shape.table
for row in tbl.rows:
row_text = '\t'.join(cell.text.strip() for cell in row.cells)
if row_text.strip():
slide_texts.append(row_text)
has_text = True
# Chart title
if shape.shape_type == 3: # MSO_SHAPE_TYPE.CHART
try:
if shape.chart.has_title:
title = shape.chart.chart_title.text_frame.text
slide_texts.append(f"[Chart: {title}]")
has_text = True
except Exception:
pass
slides_data.append({
'slide': slide_num,
'text': '\n'.join(slide_texts),
'has_text': has_text,
'needs_caption': not has_text # flag image-only slides
})
print(f"Total slides: {len(slides_data)}")
image_only = sum(1 for s in slides_data if s['needs_caption'])
print(f"Slides with text: {len(slides_data) - image_only}, image-only: {image_only}")
return slides_data
import pandas as pd
def extract_pptx_tables(pptx_path):
"""Extract all tables from all slides as DataFrames."""
prs, _ = load_pptx(pptx_path)
all_tables = []
for slide_num, slide in enumerate(prs.slides, start=1):
for shape in slide.shapes:
if not shape.has_table:
continue
tbl = shape.table
rows = []
for row in tbl.rows:
rows.append([cell.text.strip() for cell in row.cells])
if not rows:
continue
# Use first row as header
try:
df = pd.DataFrame(rows[1:], columns=rows[0])
except Exception:
df = pd.DataFrame(rows)
all_tables.append({'slide': slide_num, 'df': df})
print(f" Slide {slide_num}: table {df.shape[0]}r × {df.shape[1]}c")
print(df.head(3).to_string())
return all_tables
python-pptx can read Chart data when it's stored as embedded Excel data.
If that fails, fall back to captioning the slide image.
def extract_chart_data(pptx_path):
"""
Extract data series from Chart shapes.
Returns list of {slide, chart_title, series_name, categories, values}.
"""
prs, _ = load_pptx(pptx_path)
charts = []
for slide_num, slide in enumerate(prs.slides, start=1):
for shape in slide.shapes:
if shape.shape_type != 3: # not a chart
continue
try:
chart = shape.chart
title = chart.chart_title.text_frame.text if chart.has_title else f"Chart_S{slide_num}"
for plot in chart.plots:
for series in plot.series:
try:
categories = [str(pt.label) for pt in series.data_labels] if hasattr(series, 'data_labels') else []
values = [pt.value for pt in series.values] if hasattr(series, 'values') else []
# Alternative: use xChart data
if not values:
values = list(series.values)
except Exception as e:
values = []
categories = []
charts.append({
'slide': slide_num,
'chart_title': title,
'series': getattr(series, 'name', ''),
'categories': categories,
'values': values
})
except Exception as e:
print(f" Slide {slide_num}: chart extraction failed ({e}) — will use caption")
return charts
When a slide has no extractable text (pure image/screenshot slides):
import fitz # PyMuPDF can also render PPTX via LibreOffice conversion
CAPTION = "/path/to/skills/sn-da-image-caption/scripts/caption.py"
def caption_image_slides(pptx_path, slides_data, prompt=None):
"""
For slides flagged as 'needs_caption', render to PNG and caption.
Uses LibreOffice to convert PPTX to PDF first, then renders pages.
"""
image_slides = [s for s in slides_data if s['needs_caption']]
if not image_slides:
print("No image-only slides to caption.")
return slides_data
# Convert PPTX → PDF (preserves slide visuals)
out_dir = "/tmp"
r = subprocess.run(
['libreoffice', '--headless', '--convert-to', 'pdf', '--outdir', out_dir, pptx_path],
capture_output=True, text=True
)
pdf_name = os.path.basename(pptx_path).rsplit('.', 1)[0] + '.pdf'
pdf_path = os.path.join(out_dir, pdf_name)
if not os.path.exists(pdf_path):
print(f"LibreOffice conversion failed: {r.stderr[:200]}")
return slides_data
# Render each image-only slide
doc = fitz.open(pdf_path)
for s in image_slides:
page_idx = s['slide'] - 1 # 0-indexed
if page_idx >= len(doc):
continue
page = doc[page_idx]
mat = fitz.Matrix(150/72, 150/72)
pix = page.get_pixmap(matrix=mat)
img_path = f"/tmp/slide_{s['slide']}.png"
pix.save(img_path)
# Caption the slide image
cmd = ["python3", CAPTION, img_path, "--json"]
p = prompt or "提取幻灯片中所有文字、数值和表格内容,保持结构,Markdown格式输出。"
cmd += ["--prompt", p]
cr = subprocess.run(cmd, capture_output=True, text=True, timeout=90)
if cr.returncode == 0:
desc = json.loads(cr.stdout).get("description", "")
s['text'] = desc
s['needs_caption'] = False
print(f" Slide {s['slide']}: captioned ({len(desc)} chars)")
else:
print(f" Slide {s['slide']}: caption failed — {cr.stderr[:80]}")
doc.close()
return slides_data
def find_in_pptx(pptx_path, keyword, slides_data=None):
"""Find keyword across all slides (after text extraction + captioning)."""
if slides_data is None:
slides_data = extract_all_slides_text(pptx_path)
results = []
for s in slides_data:
if keyword in s.get('text', ''):
idx = s['text'].find(keyword)
context = s['text'][max(0, idx-100):idx+200]
results.append({'slide': s['slide'], 'context': context})
print(f"'{keyword}' found in {len(results)} slides: {[r['slide'] for r in results]}")
return results
def extract_timeline(pptx_path, date_pattern=r'\d{4}[年/\-]\d{1,2}'):
"""Extract date-tagged events from slide text."""
import re
slides_data = extract_all_slides_text(pptx_path)
events = []
for s in slides_data:
for line in s['text'].split('\n'):
if re.search(date_pattern, line):
events.append({'slide': s['slide'], 'event': line.strip()})
return events
def compute_ratio_from_pptx_table(pptx_path, numerator_col, denominator_col):
"""Example: compute ratio = col_A / col_B for all rows."""
tables = extract_pptx_tables(pptx_path)
for item in tables:
df = item['df']
# Try to find columns (flexible matching)
num_col = next((c for c in df.columns if numerator_col in c), None)
den_col = next((c for c in df.columns if denominator_col in c), None)
if num_col and den_col:
df[num_col] = pd.to_numeric(df[num_col].str.replace('人', '').str.strip(), errors='coerce')
df[den_col] = pd.to_numeric(df[den_col].str.replace('人', '').str.strip(), errors='coerce')
df['ratio'] = (df[num_col] / df[den_col] * 100).round(0).astype(str) + '%'
print(df[['slide' if 'slide' in df.columns else df.columns[0], num_col, den_col, 'ratio']].to_string())
pptx_path = "/mnt/data/report.pptx"
# 1. Extract text from all slides
slides_data = extract_all_slides_text(pptx_path)
# 2. Caption image-only slides
slides_data = caption_image_slides(pptx_path, slides_data)
# 3. Combine all text for analysis
all_text = '\n\n'.join(
f"[Slide {s['slide']}]\n{s['text']}"
for s in slides_data if s.get('text')
)
# 4. Search or analyze
results = find_in_pptx(pptx_path, '录用占比', slides_data)
# 5. Extract tables if needed
tables = extract_pptx_tables(pptx_path)
| Pitfall | Fix |
|---|---|
| Skip slides with no text → miss chart data | Flag needs_caption, render & caption (Method 4) |
shape.chart.plots[0].series fails → no data | Catch exception, fall back to captioning the slide |
| Table columns misread (企业名 vs 岗位名) | Print headers + first 3 rows before computing; verify column meaning |
| Only read first N slides | Always for slide in prs.slides — no index limit |
.ppt format → python-pptx can't open | Convert to .pptx via libreoffice first |
| PPT has overlapping text boxes → garbled order | Sort shapes by top-left position: sorted(slide.shapes, key=lambda s: (s.top, s.left)) |