Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add YuanyuanMa03/academic-research-skills --skill ieee-downloadgit clone --depth 1 https://github.com/YuanyuanMa03/academic-research-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/yuanyuanma03/academic-research-skills/ieee-download)<a href="https://agentmods.dev/skills/yuanyuanma03/academic-research-skills/ieee-download"><img src="https://agentmods.dev/badge/skills/yuanyuanma03/academic-research-skills/ieee-download/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/yuanyuanma03/academic-research-skills/ieee-download"><img src="https://agentmods.dev/badge/skills/yuanyuanma03/academic-research-skills/ieee-download.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00032 | $0.01820 |
| Opus 5 | $0.00016 | $0.00910 |
| Sonnet 5 | $0.00006 | $0.00364 |
| Haiku 4.5 | $0.00003 | $0.00182 |
Grade A, and why
ieee-download scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 203 lines — stays where its author put it; the contents beside it link to each section on GitHub.
IEEE Xplore PDF Download
Download PDF files from IEEE Xplore articles to the user's local disk.
Prerequisites
- The user must have access to the article (institutional subscription, open access, or personal subscription).
- If the article is behind a paywall and the user has no access, the download will fail.
PDF URL Patterns (Discovered via Testing)
IEEE Xplore has a two-layer PDF serving architecture:
| Layer | URL | Purpose |
|---|---|---|
| Wrapper | {BASE_URL}/stamp/stamp.jsp?tp=&arnumber={ARNUMBER} |
HTML page with iframe |
| Actual PDF | {BASE_URL}/stampPDF/getPDF.jsp?tp=&arnumber={ARNUMBER}&ref= |
Direct PDF binary |
Key discovery: The getPDF.jsp URL pattern is predictable — you can skip stamp.jsp entirely and navigate directly to the PDF. This cuts tool calls from 6 to 2 per paper.
Single Article Download (Optimized: 2 tool calls)
Step 1: Pre-check access, then navigate directly to PDF
First, check if the user has access by visiting the document page:
async () => {
// Quick access check on the current document page
const bodyText = document.body.innerText;
const hasAccess = bodyText.includes('Access provided by');
const accessLine = bodyText.match(/Access provided by[^\n]*/)?.[0] || '';
return { hasAccess, accessLine };
}
If hasAccess is false, tell the user: "当前未登录或无权限访问此文章,请先在浏览器中完成机构登录。"
If access is confirmed, navigate directly to the getPDF URL (skip stamp.jsp):
navigate_page({
url: "{BASE_URL}/stampPDF/getPDF.jsp?tp=&arnumber={ARNUMBER}&ref=",
initScript: "Object.defineProperty(navigator, 'webdriver', {get: () => undefined})"
})
Step 2: Trigger download
(arnumber, title) => {
if (document.contentType === 'application/pdf') {
// Construct a readable filename
const safeName = (title || '').replace(/[^\w\s-]/g, '').replace(/\s+/g, '_').substring(0, 60);
const filename = arnumber + (safeName ? '-' + safeName : '') + '.pdf';
const a = document.createElement('a');
a.href = window.location.href;
a.download = filename;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
return { downloaded: true, filename };
}
return { downloaded: false, contentType: document.contentType, error: 'Not a PDF. Access may be denied.' };
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 203 lines · 32 tokens per session scan A b48289b86669
ieee-download is a skill published in the GitHub repository YuanyuanMa03/academic-research-skills (63 stars, last pushed 22d ago), licensed MIT. It adds 32 tokens to every session and 1,820 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
clinical-reports
Write comprehensive clinical reports including case reports (CARE guidelines), diagnostic reports (radiology/pathology/lab), clinical trial reports (ICH-E3, SAE, CSR), and patient documentation (SOAP, H&P, discharge summaries). Full support with templates, regulatory compliance (HIPAA, FDA, ICH-GCP), and validation…
Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text/tables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting/decrypting PDFs, extracting images, and…
clinical-decision-support
Generate professional clinical decision support (CDS) documents for pharmaceutical and clinical research settings, including patient cohort analyses (biomarker-stratified with outcomes) and treatment recommendation reports (evidence-based guidelines with decision algorithms). Supports GRADE evidence grading…
treatment-plans
Generate concise (3-4 page), focused medical treatment plans in LaTeX/PDF format for all clinical specialties. Supports general medical treatment, rehabilitation therapy, mental health care, chronic disease management, perioperative care, and pain management. Includes SMART goal frameworks, evidence-based…
markitdown
Convert files and office documents to Markdown. Supports PDF, DOCX, PPTX, XLSX, images (with OCR), audio (with transcription), HTML, CSV, JSON, XML, ZIP, YouTube URLs, EPubs and more.
paper-summary
A workflow that reads PDF research papers and creates two Korean HTML documents: a full translation and a key-point summary. Figures, tables, formulas, and graphs are included, with links between the documents.