Install any skill in seconds. Free to start, no credit card required.
Get Started Free →PDF 文档解析。自动区分文字型 PDF 与扫描型 PDF,覆盖:文本/表格提取、多页全量扫描、嵌入图表 caption、单位感知数值计算。
.claude/skills/opensensenova-pdf-analysis/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-07 | ✗→✓ | ▲ Improved | 87% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 118% | 0% |
| case-13 | ✗→✓ | ▲ Improved | 70% | 0% |
| case-18 | ✗→✓ | ▲ Improved | 87% | 0% |
| case-20 | ✗→✓ | ▲ Improved | 74% | 0% |
Critical first step: determine whether the PDF has extractable text or is a scanned image. Never skip this — using the wrong parser wastes time and produces empty results.
pythonimport fitz # PyMuPDF def detect_pdf_type(pdf_path, sample_pages=3): """ Returns 'text' if PDF has extractable text, 'scanned' if image-based. Checks first N pages (or all if fewer). """ doc = fitz.open(pdf_path) total_chars = 0 pages_checked = min(sample_pages, len(doc)) for i in range(pages_checked): page = doc[i] text = page.get_text("text") total_chars += len(text.strip()) doc.close() avg_chars = total_chars / max(pages_checked, 1) pdf_type = 'text' if avg_chars > 50 else 'scanned' print(f"PDF type: {pdf_type} (avg {avg_chars:.0f} chars/page, checked {pages_checked} pages)") return pdf_type
pythonimport fitz def extract_text_pdf(pdf_path): """Extract text from all pages of a text-based PDF.""" doc = fitz.open(pdf_path) total_pages = len(doc) print(f"Total pages: {total_pages}") all_text = [] for i, page in enumerate(doc): text = page.get_text("text").strip() if text: all_text.append(f"=== Page {i+1} ===\n{text}") else: print(f" Page {i+1}: no text (may be image — will caption later)") doc.close() return '\n\n'.join(all_text) # ⚠️ MUST iterate ALL pages — never stop at page 1 full_text = extract_text_pdf(pdf_path) print(f"Total text length: {len(full_text)} chars")
For PDFs with tables, pdfplumber gives better table structure than fitz:
pythonimport pdfplumber import pandas as pd def extract_tables_pdf(pdf_path): """Extract all tables from all pages as DataFrames.""" all_tables = [] with pdfplumber.open(pdf_path) as pdf: print(f"Total pages: {len(pdf.pages)}") for i, page in enumerate(pdf.pages): tables = page.extract_tables() for j, tbl in enumerate(tables): if not tbl: continue # First row as header df = pd.DataFrame(tbl[1:], columns=tbl[0]) # Clean: strip whitespace, replace None df = df.applymap(lambda x: x.strip() if isinstance(x, str) else x) df = df.dropna(how='all').reset_index(drop=True) all_tables.append({'page': i+1, 'table_idx': j, 'df': df}) print(f" Page {i+1}, Table {j}: {df.shape[0]}r × {df.shape[1]}c") print(df.head(3)) return all_tables # Verify table alignment after extraction: # Print column headers and first 3 rows to confirm row/col mapping is correct
For scanned PDFs (image-based pages), render each page as PNG and caption:
pythonimport fitz import subprocess, json, os CAPTION = "/path/to/skills/sn-da-image-caption/scripts/caption.py" def extract_scanned_pdf(pdf_path, prompt=None, dpi=150): """Render each page as image, then caption for text extraction.""" doc = fitz.open(pdf_path) total_pages = len(doc) print(f"Scanned PDF: {total_pages} pages, captioning each...") all_text = [] for i, page in enumerate(doc): # Render page to PNG mat = fitz.Matrix(dpi/72, dpi/72) pix = page.get_pixmap(matrix=mat) img_path = f"/tmp/pdf_page_{i+1}.png" pix.save(img_path) # Caption the page image cmd = ["python3", CAPTION, img_path, "--json"] if prompt: cmd += ["--prompt", prompt] else: cmd += ["--prompt", "提取页面中所有文字和表格内容,保持原始结构,Markdown格式输出。"] r = subprocess.run(cmd, capture_output=True, text=True, timeout=90) if r.returncode == 0: desc = json.loads(r.stdout).get("description", "") all_text.append(f"=== Page {i+1} ===\n{desc}") print(f" Page {i+1}: {len(desc)} chars extracted") else: print(f" Page {i+1}: caption failed — {r.stderr[:100]}") doc.close() return '\n\n'.join(all_text) # Usage for scanned invoice PDFs, bank statements, org charts, etc. text = extract_scanned_pdf(pdf_path)
pythondef extract_hybrid_pdf(pdf_path, text_prompt=None, image_prompt=None): """Handle PDFs where some pages have text, others are scanned.""" doc_fitz = fitz.open(pdf_path) all_text = [] for i, page in enumerate(doc_fitz): raw_text = page.get_text("text").strip() if len(raw_text) > 50: # Text page — use directly all_text.append(f"=== Page {i+1} (text) ===\n{raw_text}") else: # Image page — render and caption mat = fitz.Matrix(150/72, 150/72) pix = page.get_pixmap(matrix=mat) img_path = f"/tmp/hybrid_page_{i+1}.png" pix.save(img_path) cmd = ["python3", CAPTION, img_path, "--json"] prompt = image_prompt or "提取页面中所有文字和表格内容,Markdown格式输出。" cmd += ["--prompt", prompt] r = subprocess.run(cmd, capture_output=True, text=True, timeout=90) if r.returncode == 0: desc = json.loads(r.stdout).get("description", "") all_text.append(f"=== Page {i+1} (image→caption) ===\n{desc}") else: all_text.append(f"=== Page {i+1} (caption failed) ===") doc_fitz.close() return '\n\n'.join(all_text)
pythonimport fitz def extract_pdf_images(pdf_path, min_width=100, min_height=100): """Extract all embedded images from a PDF (charts, diagrams, photos).""" doc = fitz.open(pdf_path) image_paths = [] for page_num, page in enumerate(doc): for img_idx, img in enumerate(page.get_images(full=True)): xref = img[0] base = doc.extract_image(xref) img_bytes = base["image"] ext = base["ext"] img_path = f"/tmp/pdf_img_p{page_num+1}_{img_idx}.{ext}" with open(img_path, 'wb') as f: f.write(img_bytes) # Only keep images above size threshold (skip icons/logos) from PIL import Image with Image.open(img_path) as im: w, h = im.size if w >= min_width and h >= min_height: image_paths.append({'page': page_num+1, 'path': img_path, 'size': (w, h)}) print(f" Page {page_num+1}, img {img_idx}: {w}×{h} → {img_path}") doc.close() return image_paths # After extracting, caption each image: # for img_info in image_paths: # caption_image(img_info['path'], prompt="提取图表数据,Markdown 表格输出。")
python# When PDF contains multiple invoices (one per page): tables_by_page = extract_tables_pdf(pdf_path) invoices = [] for item in tables_by_page: df = item['df'] # Find key fields (flexible column name matching) for col in df.columns: if '金额' in str(col) or 'amount' in str(col).lower(): invoices.append({'page': item['page'], 'amount_col': col, 'data': df}) break print(f"Found {len(invoices)} pages with amount data")
pythonimport re def extract_number_with_unit(text_snippet): """ Extract value and unit from text like '1,760 千港元' or '95,975,196,217.52元'. Returns (numeric_value, unit_string). """ # Remove thousands separator text_snippet = text_snippet.replace(',', '') match = re.search(r'([\d\.]+)\s*(千|万|亿|百万)?\s*(元|港元|美元|人民币|%|percent)?', text_snippet) if not match: return None, None value = float(match.group(1)) multiplier_map = {'千': 1000, '万': 10000, '亿': 1e8, '百万': 1e6} mult = multiplier_map.get(match.group(2), 1) unit = match.group(3) or '' return value * mult, f"{match.group(2) or ''}{unit}" # Always verify unit matches what the question asks: # "多几多" in HKD → answer in 千港元 if source says 千港元
pythondef find_in_pdf(pdf_path, keyword, context_chars=200): """Search for keyword across all pages, return context snippets.""" text = extract_text_pdf(pdf_path) results = [] start = 0 while True: idx = text.find(keyword, start) if idx < 0: break snippet = text[max(0, idx-context_chars//2): idx+context_chars] results.append({'pos': idx, 'context': snippet}) start = idx + 1 print(f"Found '{keyword}' {len(results)} times") return results
| Pitfall | Fix | |---------|-----| | Use pdfplumber on scanned PDF → empty result | Detect type first (Method 0); use OCR path for scanned | | Only read page 1, miss remaining invoices/data | Always for page in doc — never index [0] only | | Table columns misaligned after extraction | Print headers + first 3 rows to verify before computing | | Report number as % when question asks absolute value | Read question carefully; extract_number_with_unit() preserves context | | Chart data embedded as image → pdfplumber returns nothing | Extract images (Method 5), then caption each | | Long doc loses cross-page context | Use find_in_pdf() for keyword search across full text | | .pdf contains multiple scanned docs (zip of PDFs) | Check if input is dir or archive; unzip first |
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→fail | 34,758 | 21,249 | -39% | 1 | 1 | 0% | 5,817 | 7,202 | +24% | 0 | 0 | — |
case-02 | fail→fail | 7,072 | 9,602 | +36% | 1 | 1 | 0% | 657 | 3,933 | +499% | 0 | 0 | — |
case-03 | fail→fail | 16,894 | 7,506 | -56% | 1 | 1 | 0% | 3,469 | 3,541 | +2% | 0 | 0 | — |
case-04 | pass→pass | 13,829 | 5,888 | -57% | 1 | 1 | 0% | 2,052 | 4,360 | +112% | 0 | 0 | — |
case-05 | pass→fail | 10,579 | 45,642 | +331% | 1 | 1 | 0% | 2,240 | 3,430 | +53% | 0 | 0 | — |
case-06 | pass→pass | 7,884 | 7,151 | -9% | 1 | 1 | 0% | 1,663 | 4,590 | +176% | 0 | 0 | — |
case-07 | fail→pass | 12,126 | 7,788 | -36% | 1 | 1 | 0% | 2,408 | 4,501 | +87% | 0 | 0 | — |
case-08 | fail→pass | 10,030 | 7,430 | -26% | 1 | 1 | 0% | 1,862 | 4,057 | +118% | 0 | 0 | — |
case-09 | pass→pass | 23,163 | 14,048 | -39% | 1 | 1 | 0% | 3,144 | 5,274 | +68% | 0 | 0 | — |
case-10 | pass→pass | 14,069 | 7,925 | -44% | 1 | 1 | 0% | 2,096 | 4,342 | +107% | 0 | 0 | — |
case-11 | pass→pass | 20,675 | 5,907 | -71% | 1 | 1 | 0% | 2,194 | 4,280 | +95% | 0 | 0 | — |
case-12 | pass→pass | 13,378 | 8,897 | -33% | 1 | 1 | 0% | 2,255 | 4,261 | +89% | 0 | 0 | — |
case-13 | fail→pass | 18,934 | 12,679 | -33% | 1 | 1 | 0% | 2,983 | 5,076 | +70% | 0 | 0 | — |
case-14 | pass→pass | 19,183 | 11,127 | -42% | 1 | 1 | 0% | 3,153 | 4,753 | +51% | 0 | 0 | — |
case-15 | fail→fail | 15,714 | 9,425 | -40% | 1 | 1 | 0% | 2,996 | 4,824 | +61% | 0 | 0 | — |
case-16 | pass→pass | 16,668 | 18,509 | +11% | 1 | 1 | 0% | 3,335 | 6,964 | +109% | 0 | 0 | — |
case-17 | fail→fail | 14,457 | 14,130 | -2% | 1 | 1 | 0% | 2,375 | 5,061 | +113% | 0 | 0 | — |
case-18 | fail→pass | 13,676 | 8,040 | -41% | 1 | 1 | 0% | 2,433 | 4,554 | +87% | 0 | 0 | — |
case-19 | pass→pass | 4,791 | 6,190 | +29% | 1 | 1 | 0% | 841 | 3,882 | +362% | 0 | 0 | — |
case-20 | fail→pass | 15,101 | 9,012 | -40% | 1 | 1 | 0% | 2,767 | 4,806 | +74% | 0 | 0 | — |
case-21 | pass→pass | 4,823 | 5,524 | +15% | 1 | 1 | 0% | 922 | 3,811 | +313% | 0 | 0 | — |
case-22 | fail→pass | 15,383 | 11,738 | -24% | 1 | 1 | 0% | 2,848 | 5,132 | +80% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted, and 19 counted toward the lift figure. The other 3 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +23 percentage points is the difference between those two pass rates over the 19 comparable cases. 2 cases got worse with the skill loaded, and they are included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.