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
CODEBLOCK0
Workflow
- 1. If the PDF URL is already known, use
download_ir_pdf.py directly. - If only the company or IR domain is known, use
find_ir_pdf.py to 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.
IR PDF 下载器
此技能仅用于文档,不用于财务指标。
适用范围
- - 从投资者关系(IR)域名查找可能的PDF链接
- 搜索Wayback Machine以获取存档的PDF链接
- 仅将SEC EDGAR作为PDF发现来源
- 使用适当的标头下载已知的静态PDF链接
请勿将此技能用于
- - 收入/净利润/每股收益分析
- SEC XBRL/公司事实查询
- 申报数据规范化
上述需求请使用sec-finance。
核心命令
bash
下载已知的静态PDF链接
python3 scripts/download
irpdf.py https://ir.jd.com/static-files/...
从IR域名发现可能的PDF
python3 scripts/find
irpdf.py --domain ir.baidu.com --year 2024
按公司别名搜索(可用时使用共享发行人映射)
python3 scripts/find
irpdf.py --company Alibaba
仅搜索Wayback
python3 scripts/find
irpdf.py --domain ir.alibabagroup.com --sources wayback
工作流程
- 1. 如果PDF链接已知,直接使用downloadirpdf.py。
- 如果仅知道公司或IR域名,使用findirpdf.py发现可能的链接。
- 如果发现成功,将结果链接传递给downloadirpdf.py。
- 如果用户实际需要的是结构化财务数据而非文档本身,则停止并切换至sec-finance。
备注
- - 别名、IR域名及已验证的CIK的发行人提示信息存储在references/issuers.json中。
- 请保持此技能专注于PDF发现与下载。
- 请勿在此处重复结构化财务指南。