AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Download Papers

skill-quantumbfs-claude-code-skills-download-papers · by QuantumBFS

Use when the user asks to download an academic paper or get the PDF — given a URL, DOI, paper title, or citation. Uses the bundled helper script as the default path for DOI/URL/PDF downloads, with open-web and arXiv lookup as fallbacks for title-only requests. Triggers on phrases like "download paper", "get me the PDF", "fetch this paper", "get this DOI".

No reviews yet
0 installs
42 views
0.0% view→install

Install

$ agentstack add skill-quantumbfs-claude-code-skills-download-papers

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-quantumbfs-claude-code-skills-download-papers)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Download Papers? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Download Papers

Goal: get the PDF onto the local filesystem with minimum friction. The helper script is the default path once you have a DOI, URL, or direct PDF link.

Default workflow

  1. If the user gives a DOI, URL, or direct PDF link, run:

``bash python ${CLAUDE_SKILL_DIR}/scripts/download_paper.py "" --out-dir papers ``

  1. Read the JSON output. On status: "ok", report the local_path. On status: "error", summarize the attempted URLs and try the fallback workflow below.
  2. If the user gives only a title or citation, search for a DOI or PDF URL first, then pass that result to the helper script.

The helper resolves DOI or URL inputs, extracts embedded PDF links from HTML pages, prints JSON with status, pdf_url, and local_path, and verifies that the downloaded file starts with the PDF magic bytes.

Fallback workflow

1. Find an open-web source

Search the web for a freely available copy:

  • Google Scholar / general web search for the title; look for [PDF] links
  • Author's personal homepage / institutional page (often hosts preprints)
  • Lab group "Publications" page
  • INSPIRE-HEP, NASA ADS, OSTI, ResearchGate (sometimes), university repositories

When a direct PDF URL or article URL turns up, pass it to the helper script.

2. arXiv

Search arXiv by title/author. Useful when the published version is unavailable but a preprint exists:

  • https://arxiv.org/abs/ → PDF at https://arxiv.org/pdf/
  • For papers before ~Aug 1991 (cond-mat launch), arXiv won't have it — stop here and tell the user no PDF was found.

Common publisher PDF locations

  • Nature / Springer: "Download PDF"
  • Science / AAAS: "PDF" in article tools
  • ACS: "PDF" button near title
  • Elsevier / ScienceDirect: "Download PDF"
  • Wiley: "PDF" in tools section
  • APS (Physical Review): "PDF" in article header
  • World Scientific (Mod. Phys. Lett., Int. J. Mod. Phys.): "PDF" link
  • arXiv: direct PDF link

Tips

  • Always verify the downloaded file is a valid PDF; the helper script checks PDF magic bytes.
  • Save to a meaningful filename: _.pdf.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.