grobid-pdf-parsing
Extract structured text, metadata, and references from academic PDFs
npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill grobid-pdf-parsing --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# GROBID PDF Parsing Guide ## Overview Academic PDFs are the primary format for distributing research, yet extracting structured data from them remains challenging. PDFs encode visual layout, not semantic structure -- headings, paragraphs, equations, tables, and citations are all just positioned text and graphics. GROBID (GeneRation Of BIbliographic Data) is the leading open-source tool for parsing academic PDFs into structured XML/TEI format, extracting metadata, body text, references, and figures with high accuracy. GROBID is used by major academic platforms including CORE, ResearchGate, and others for large-scale document processing. It combines machine learning models (CRF and deep learning) with heuristic rules to handle the diverse formatting of academic papers across publishers and disciplines. This guide covers installing and running GROBID, using its REST API for batch processing, extracting specific elements (metadata, references, body sections), and integrating GROBID output into downstream workflows such as knowledge bases, systematic reviews, and literature analysis pipelines. ## Installation ### Docker (Recommended) ```bash # Pull the latest GROBID image docker pull g
- Overview
- Installation
- Docker (Recommended)
- From Source
- REST API Usage
- Process Full Document
- API Endpoints
- Python Client
- Parsing TEI XML Output
- Extracting Metadata
- Extracting Body Sections
- Extracting References
- Batch Processing
- Processing a Directory of PDFs
Pull the latest GROBID image docker pull grobid/grobid:0.8.1 Run GROBID server docker run --rm --init \ GROBID is now running at http://localhost:8070 Web console: http://localhost:8070/console git clone https://github.com/kermitt2/grobid.git cd grobid Process a single PDF and get TEI XML curl -v --form input=@paper.pdf \
What does the grobid-pdf-parsing skill do?
Extract structured text, metadata, and references from academic PDFs
How do I install it?
Run `npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill grobid-pdf-parsing --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From brycewang-stanford/Auto-Empirical-Research-Skills, a repository with 3,244 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.