← Back to Skills Marketplace
143
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install ir-pdf-downloader
Description
Discover and download static PDF files from Investor Relations (IR) sites, including annual reports and quarterly result PDFs. Use when the task is to find a...
README (SKILL.md)
IR PDF Downloader
Use this skill for documents, not financial metrics.
Scope
- Find likely PDF URLs from an IR domain
- Search Wayback Machine for archived PDF links
- Use SEC EDGAR only as a PDF discovery source
- Download known static PDF URLs with proper headers
Do not use this skill for
- Revenue / net income / EPS analysis
- SEC XBRL/companyfacts queries
- Filing data normalization
Use sec-finance for those.
Core commands
# Download a known static PDF URL
python3 scripts/download_ir_pdf.py "https://ir.jd.com/static-files/..."
# Discover likely PDFs from an IR domain
python3 scripts/find_ir_pdf.py --domain ir.baidu.com --year 2024
# Search by company alias (uses shared issuer map when available)
python3 scripts/find_ir_pdf.py --company Alibaba
# Search only Wayback
python3 scripts/find_ir_pdf.py --domain ir.alibabagroup.com --sources wayback
Workflow
- If the PDF URL is already known, use
download_ir_pdf.pydirectly. - If only the company or IR domain is known, use
find_ir_pdf.pyto discover likely URLs. - If discovery succeeds, pass the resulting URL to
download_ir_pdf.py. - If the user actually wants structured financial numbers rather than the document itself, stop and switch to
sec-finance.
Notes
- Issuer hints for aliases, IR domains, and validated CIKs live in
references/issuers.json. - Keep this skill focused on PDF discovery and download.
- Do not duplicate structured-finance guidance here.
Usage Guidance
This skill appears coherent with its purpose, but before installing/running consider: (1) it will make outbound HTTP requests to archive.org, sec.gov and arbitrary IR domains and will write files to disk — run in a controlled environment if you are cautious; (2) the downloader sets Referer and other headers to access PDFs behind basic protections (intended to retrieve IR PDFs) — do not use it to bypass access controls for non-public content; (3) review the included Python scripts (they are short and readable) before use and ensure you have the 'requests' package installed; (4) verify you have permission to download large numbers of files from target sites to avoid rate-limiting or terms-of-service issues.
Capability Assessment
Purpose & Capability
Name/description match the implementation: scripts search Wayback, probe IR domains, query SEC EDGAR for PDF links and download static PDF URLs. Included issuer hints (references/issuers.json) are used by discovery logic and align with the described scope.
Instruction Scope
SKILL.md instructs running the included scripts to discover or download PDFs and explicitly limits scope (no structured XBRL/finance). The scripts perform network requests only to web.archive.org, sec.gov, and target IR domains, and write downloaded PDFs to disk. They do not read unrelated system files or request unrelated environment variables.
Install Mechanism
No install spec is provided (instruction-only). The code requires the standard 'requests' Python package and prints guidance to install it if missing — a low-risk dependency. Nothing is downloaded from arbitrary URLs during install.
Credentials
The skill requests no environment variables, secrets, or external credentials. All network access is explained by the stated purpose (Wayback, SEC EDGAR, IR domains). There are no config paths or tokens requested that would be disproportionate.
Persistence & Privilege
always is false and the skill is user-invocable. The scripts write downloaded PDF files to a local 'downloads' directory (or a user-specified output) — this is expected behavior and does not modify other skills or system configuration.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install ir-pdf-downloader - After installation, invoke the skill by name or use
/ir-pdf-downloader - Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.1.0
Initial public release after scope refactor, structure cleanup, and package validation.
Metadata
Frequently Asked Questions
What is IR PDF Downloader?
Discover and download static PDF files from Investor Relations (IR) sites, including annual reports and quarterly result PDFs. Use when the task is to find a... It is an AI Agent Skill for Claude Code / OpenClaw, with 143 downloads so far.
How do I install IR PDF Downloader?
Run "/install ir-pdf-downloader" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is IR PDF Downloader free?
Yes, IR PDF Downloader is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does IR PDF Downloader support?
IR PDF Downloader is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created IR PDF Downloader?
It is built and maintained by Lu Wang (@wangwllu); the current version is v0.1.0.
More Skills