{
  "schemaVersion": "1.0",
  "item": {
    "slug": "paper-fetcher",
    "name": "Academic Paper Fetcher",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/biohackerrrrrr/paper-fetcher",
    "canonicalUrl": "https://clawhub.ai/biohackerrrrrr/paper-fetcher",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/paper-fetcher",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=paper-fetcher",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/fetch_paper.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/paper-fetcher"
    },
    "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/paper-fetcher",
    "agentPageUrl": "https://openagent3.xyz/skills/paper-fetcher/agent",
    "manifestUrl": "https://openagent3.xyz/skills/paper-fetcher/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/paper-fetcher/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": "Paper Fetcher",
        "body": "Automated academic paper retrieval from Sci-Hub."
      },
      {
        "title": "Usage",
        "body": "Simple fetch:\n\nGet paper: 10.1038/nature12345\n\nMultiple papers:\n\nFetch these papers:\n- 10.1016/j.cell.2023.01.001\n- 10.1038/s41586-2023-06789-0\n- 10.1126/science.abc1234\n\nWith context:\n\nGet the epitalon paper: 10.1007/s12603-011-0032-7"
      },
      {
        "title": "What It Does",
        "body": "Takes DOI as input\nNavigates to https://www.sci-hub.su/DOI\nDownloads the PDF\nSaves to research/papers/ with clean filename\nReturns confirmation with file path"
      },
      {
        "title": "Output Location",
        "body": "workspace/\n└── research/\n    └── papers/\n        ├── paper_10.1038_nature12345.pdf\n        ├── paper_10.1016_j.cell.2023.01.001.pdf\n        └── ..."
      },
      {
        "title": "Filename Format",
        "body": "paper_[DOI with slashes replaced].pdf\n\nExamples:\n\nDOI: 10.1038/nature12345 → paper_10.1038_nature12345.pdf\nDOI: 10.1016/j.cell.2023.01.001 → paper_10.1016_j.cell.2023.01.001.pdf"
      },
      {
        "title": "Workflow",
        "body": "When user provides a DOI:\n\nExtract DOI - Parse from message (with or without https://doi.org/ prefix)\nNavigate Sci-Hub - Use browser to load https://www.sci-hub.su/DOI\nWait for PDF - Let page load and find download link\nDownload - Save PDF to research/papers/\nConfirm - Report success with file path"
      },
      {
        "title": "Error Handling",
        "body": "If paper not found on Sci-Hub:\n\nReport that Sci-Hub couldn't find it\nSuggest checking the DOI format\nUser can try manual search\n\nIf download fails:\n\nReport the error\nProvide Sci-Hub URL for manual download"
      },
      {
        "title": "Integration",
        "body": "With Obsidian Sync:\n\nPapers saved in research/papers/\nCan create notes linking to PDFs\nSync metadata to Obsidian vault\n\nWith Research Automation:\n\nFetch papers discovered in research runs\nBuild reference library automatically\nCross-reference with protocol notes"
      },
      {
        "title": "Tips",
        "body": "Finding DOIs:\n\nPubMed: Listed in article details\nPaper itself: Usually on first page\nGoogle Scholar: In citation info\n\nFormat flexibility:\n\nWith prefix: https://doi.org/10.1038/nature12345 ✅\nWithout prefix: 10.1038/nature12345 ✅\nEither format works\n\nBatch fetching:\n\nSend multiple DOIs at once\nProcessed sequentially\nAll saved to research/papers/\n\nStatus: Active\nSci-Hub Domain: https://www.sci-hub.su\nSave Location: research/papers/"
      }
    ],
    "body": "Paper Fetcher\n\nAutomated academic paper retrieval from Sci-Hub.\n\nUsage\n\nSimple fetch:\n\nGet paper: 10.1038/nature12345\n\n\nMultiple papers:\n\nFetch these papers:\n- 10.1016/j.cell.2023.01.001\n- 10.1038/s41586-2023-06789-0\n- 10.1126/science.abc1234\n\n\nWith context:\n\nGet the epitalon paper: 10.1007/s12603-011-0032-7\n\nWhat It Does\nTakes DOI as input\nNavigates to https://www.sci-hub.su/DOI\nDownloads the PDF\nSaves to research/papers/ with clean filename\nReturns confirmation with file path\nOutput Location\nworkspace/\n└── research/\n    └── papers/\n        ├── paper_10.1038_nature12345.pdf\n        ├── paper_10.1016_j.cell.2023.01.001.pdf\n        └── ...\n\nFilename Format\n\npaper_[DOI with slashes replaced].pdf\n\nExamples:\n\nDOI: 10.1038/nature12345 → paper_10.1038_nature12345.pdf\nDOI: 10.1016/j.cell.2023.01.001 → paper_10.1016_j.cell.2023.01.001.pdf\nWorkflow\n\nWhen user provides a DOI:\n\nExtract DOI - Parse from message (with or without https://doi.org/ prefix)\nNavigate Sci-Hub - Use browser to load https://www.sci-hub.su/DOI\nWait for PDF - Let page load and find download link\nDownload - Save PDF to research/papers/\nConfirm - Report success with file path\nError Handling\n\nIf paper not found on Sci-Hub:\n\nReport that Sci-Hub couldn't find it\nSuggest checking the DOI format\nUser can try manual search\n\nIf download fails:\n\nReport the error\nProvide Sci-Hub URL for manual download\nIntegration\n\nWith Obsidian Sync:\n\nPapers saved in research/papers/\nCan create notes linking to PDFs\nSync metadata to Obsidian vault\n\nWith Research Automation:\n\nFetch papers discovered in research runs\nBuild reference library automatically\nCross-reference with protocol notes\nTips\n\nFinding DOIs:\n\nPubMed: Listed in article details\nPaper itself: Usually on first page\nGoogle Scholar: In citation info\n\nFormat flexibility:\n\nWith prefix: https://doi.org/10.1038/nature12345 ✅\nWithout prefix: 10.1038/nature12345 ✅\nEither format works\n\nBatch fetching:\n\nSend multiple DOIs at once\nProcessed sequentially\nAll saved to research/papers/\n\nStatus: Active\nSci-Hub Domain: https://www.sci-hub.su\nSave Location: research/papers/"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/biohackerrrrrr/paper-fetcher",
    "publisherUrl": "https://clawhub.ai/biohackerrrrrr/paper-fetcher",
    "owner": "biohackerrrrrr",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/paper-fetcher",
    "downloadUrl": "https://openagent3.xyz/downloads/paper-fetcher",
    "agentUrl": "https://openagent3.xyz/skills/paper-fetcher/agent",
    "manifestUrl": "https://openagent3.xyz/skills/paper-fetcher/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/paper-fetcher/agent.md"
  }
}