Agent skill

grobid-pdf-parsing

Extract structured text, metadata, and references from academic PDFs

brycew6m4,252★ · +31/wk · 3 repos on radarProfile →
claude-codeNOASSERTION
Install
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.

Facts
Files in the skill folder: 1
SKILL.md size: 10 KB
Bundled scripts: none
Path: skills/43-wentorai-research-plugins/skills/tools/document/grobid-pdf-parsing/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,244
Language: Stata
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Overview
  2. Installation
  3. Docker (Recommended)
  4. From Source
  5. REST API Usage
  6. Process Full Document
  7. API Endpoints
  8. Python Client
  9. Parsing TEI XML Output
  10. Extracting Metadata
  11. Extracting Body Sections
  12. Extracting References
  13. Batch Processing
  14. Processing a Directory of PDFs
Commands it runs
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 \
More from Auto-Empirical-Research-Skills
All skills →
About this skill
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.

Keep going