LiteratureScientific Writing & PublishingK-Dense-AI/claude-scientific-skillsLiterature Review
PD

pdf

Maintainer K-Dense Inc. · Last updated April 1, 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 CodeOpenClawNanoClawDiscoveryReadingpdfdocument-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
April 1, 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 manuscript drafting and submission workflows.
  • Apply pdf when polishing research communication outputs.

Not for

  • Do not treat this catalog entry as a substitute for the full upstream workflow.

Related skills

Related skills

Back to directory
BI
LiteratureScientific Writing & Publishing

bio-machine-learning-atlas-mapping

Map query cells to reference atlases with scANVI or Symphony.

OpenClawNanoClawDiscovery
FreedomIntelligence/OpenClaw-Medical-SkillsView
BI
LiteratureScientific Writing & Publishing

bio-read-alignment-bwa-alignment

Align short reads to reference genome with BWA-MEM.

OpenClawNanoClawDiscovery
FreedomIntelligence/OpenClaw-Medical-SkillsView
BI
LiteratureScientific Writing & Publishing

bio-reference-operations

Download, index, and manage reference genome FASTA files.

OpenClawNanoClawDiscovery
FreedomIntelligence/OpenClaw-Medical-SkillsView
BI
LiteratureScientific Writing & Publishing

bioRxiv

This skill provides efficient Python-based tools for searching and retrieving preprints from the bioRxiv database. It enables comprehensive…

Claude CodeOpenClawDiscovery
K-Dense-AI/claude-scientific-skillsView