{
  "schemaVersion": "1.0",
  "item": {
    "slug": "xy-pubmed-pdf-downloader",
    "name": "XY PubMed PDF Downloader",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/xuyuan0805/xy-pubmed-pdf-downloader",
    "canonicalUrl": "https://clawhub.ai/xuyuan0805/xy-pubmed-pdf-downloader",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/xy-pubmed-pdf-downloader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=xy-pubmed-pdf-downloader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/download_pmc_pdf.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/xy-pubmed-pdf-downloader"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/xy-pubmed-pdf-downloader",
    "agentPageUrl": "https://openagent3.xyz/skills/xy-pubmed-pdf-downloader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/xy-pubmed-pdf-downloader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/xy-pubmed-pdf-downloader/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "XY PubMed PDF Downloader",
        "body": "下载 PubMed Central (PMC) 和 Europe PMC 开放获取论文的 PDF 文件。"
      },
      {
        "title": "功能",
        "body": "支持多种输入格式：PMC ID、PubMed URL、DOI\n自动从 URL 中提取 PMC ID\nDOI 自动转换为 PMC ID\n批量下载支持\n自动回退到 Europe PMC"
      },
      {
        "title": "单文件下载",
        "body": "python3 scripts/download_pmc_pdf.py <identifier>\n\n支持的 identifier 格式：\n\nPMC ID: PMC12345678 或 12345678\nPubMed URL: https://pmc.ncbi.nlm.nih.gov/articles/PMC12345678/\nDOI: 10.3389/fcvm.2024.1368022"
      },
      {
        "title": "批量下载",
        "body": "创建文本文件 pmc_list.txt，每行一个 ID：\n\nPMC12345678\nPMC87654321\n10.3389/fcvm.2024.1368022\nhttps://pmc.ncbi.nlm.nih.gov/articles/PMC56789012/\n\n运行：\n\npython3 scripts/download_pmc_pdf.py --batch pmc_list.txt"
      },
      {
        "title": "选项",
        "body": "-o, --output <dir>: 指定输出目录 (默认: ./downloads)\n-f, --filename <name>: 自定义文件名\n--batch <file>: 从文件批量下载"
      },
      {
        "title": "示例",
        "body": "# 下载单个 PDF\npython3 scripts/download_pmc_pdf.py PMC12867338\n\n# 指定输出目录\npython3 scripts/download_pmc_pdf.py PMC12867338 -o ./papers\n\n# 自定义文件名\npython3 scripts/download_pmc_pdf.py PMC12867338 -f coronary_prediction.pdf\n\n# 批量下载\npython3 scripts/download_pmc_pdf.py --batch id_list.txt -o ./batch_downloads"
      },
      {
        "title": "注意事项",
        "body": "仅支持开放获取 (Open Access) 的文章\n如果 PMC 下载失败，会自动尝试 Europe PMC\n批量下载时默认有 1 秒延迟，避免对服务器造成压力\n需要 requests 库：pip install requests"
      },
      {
        "title": "输出",
        "body": "下载的 PDF 文件保存在指定目录，默认命名格式：\n\nPMC{ID}.pdf (如 PMC12867338.pdf)"
      },
      {
        "title": "错误处理",
        "body": "404: 文章不存在或不是开放获取\nDOI 转换失败: 该 DOI 没有对应的 PMC 记录\n其他网络错误会显示详细错误信息"
      }
    ],
    "body": "XY PubMed PDF Downloader\n\n下载 PubMed Central (PMC) 和 Europe PMC 开放获取论文的 PDF 文件。\n\n功能\n支持多种输入格式：PMC ID、PubMed URL、DOI\n自动从 URL 中提取 PMC ID\nDOI 自动转换为 PMC ID\n批量下载支持\n自动回退到 Europe PMC\n使用方法\n单文件下载\npython3 scripts/download_pmc_pdf.py <identifier>\n\n\n支持的 identifier 格式：\n\nPMC ID: PMC12345678 或 12345678\nPubMed URL: https://pmc.ncbi.nlm.nih.gov/articles/PMC12345678/\nDOI: 10.3389/fcvm.2024.1368022\n批量下载\n\n创建文本文件 pmc_list.txt，每行一个 ID：\n\nPMC12345678\nPMC87654321\n10.3389/fcvm.2024.1368022\nhttps://pmc.ncbi.nlm.nih.gov/articles/PMC56789012/\n\n\n运行：\n\npython3 scripts/download_pmc_pdf.py --batch pmc_list.txt\n\n选项\n-o, --output <dir>: 指定输出目录 (默认: ./downloads)\n-f, --filename <name>: 自定义文件名\n--batch <file>: 从文件批量下载\n示例\n# 下载单个 PDF\npython3 scripts/download_pmc_pdf.py PMC12867338\n\n# 指定输出目录\npython3 scripts/download_pmc_pdf.py PMC12867338 -o ./papers\n\n# 自定义文件名\npython3 scripts/download_pmc_pdf.py PMC12867338 -f coronary_prediction.pdf\n\n# 批量下载\npython3 scripts/download_pmc_pdf.py --batch id_list.txt -o ./batch_downloads\n\n注意事项\n仅支持开放获取 (Open Access) 的文章\n如果 PMC 下载失败，会自动尝试 Europe PMC\n批量下载时默认有 1 秒延迟，避免对服务器造成压力\n需要 requests 库：pip install requests\n输出\n\n下载的 PDF 文件保存在指定目录，默认命名格式：\n\nPMC{ID}.pdf (如 PMC12867338.pdf)\n错误处理\n404: 文章不存在或不是开放获取\nDOI 转换失败: 该 DOI 没有对应的 PMC 记录\n其他网络错误会显示详细错误信息"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/xuyuan0805/xy-pubmed-pdf-downloader",
    "publisherUrl": "https://clawhub.ai/xuyuan0805/xy-pubmed-pdf-downloader",
    "owner": "xuyuan0805",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/xy-pubmed-pdf-downloader",
    "downloadUrl": "https://openagent3.xyz/downloads/xy-pubmed-pdf-downloader",
    "agentUrl": "https://openagent3.xyz/skills/xy-pubmed-pdf-downloader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/xy-pubmed-pdf-downloader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/xy-pubmed-pdf-downloader/agent.md"
  }
}