Data & ReproGeneral FoundationK-Dense-AI/claude-scientific-skillsData & Reproduction
PD

pdf

Maintainer K-Dense Inc. · Last updated March 31, 2026

This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions.

Claude CodeOpenClawNanoClawAnalysisWritingpdfdocument-processingworkflowdocument processing & conversion

Original source

K-Dense-AI/claude-scientific-skills

https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills/pdf

Maintainer
K-Dense Inc.
License
Proprietary. LICENSE.txt has complete terms
Last updated
March 31, 2026

Skill Snapshot

Key Details From SKILL.md

2 min

Key Notes

  • This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions.
  • reader = PdfReader("document.pdf") print(f"Pages: {len(reader.pages)}").

Source Doc

Excerpt From SKILL.md

Quick Start

from pypdf import PdfReader, PdfWriter

## Extract text

text = ""
for page in reader.pages:
    text += page.extract_text()

Advanced Table Extraction

import pandas as pd

with pdfplumber.open("document.pdf") as pdf:
    all_tables = []
    for page in pdf.pages:
        tables = page.extract_tables()
        for table in tables:
            if table:  # Check if table is not empty
                df = pd.DataFrame(table[1:], columns=table[0])
                all_tables.append(df)

Use cases

  • Use pdf for data analysis, visual communication, and result presentation workflows.
  • Apply pdf when research outputs need charts, diagrams, document processing, or exploratory analysis.

Not for

  • Do not rely on this catalog entry alone for installation or maintenance details.

Related skills

Related skills

Back to directory
AG
Data & ReproGeneral Foundation

agent-browser

Browse the web for any task — research topics, read articles, interact with web apps, fill forms, take screenshots, extract data, and test w…

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView
DO
Data & ReproGeneral Foundation

docx

A.docx file is a.

Claude CodeOpenClawAnalysis
K-Dense-AI/claude-scientific-skillsView
FI
Data & ReproGeneral Foundation

find-skills

Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can…

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView
MU
Data & ReproGeneral Foundation

multi-search-engine

Multi search engine integration with 17 engines (8 CN + 9 Global). Supports advanced search operators, time filters, site search, privacy en…

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView