{
  "schemaVersion": "1.0",
  "item": {
    "slug": "academic-research",
    "name": "Academic Research",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/rogerSuperBuilderAlpha/academic-research",
    "canonicalUrl": "https://clawhub.ai/rogerSuperBuilderAlpha/academic-research",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/academic-research",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=academic-research",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/literature-review.py",
      "scripts/scholar-search.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/academic-research"
    },
    "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/academic-research",
    "agentPageUrl": "https://openagent3.xyz/skills/academic-research/agent",
    "manifestUrl": "https://openagent3.xyz/skills/academic-research/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/academic-research/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": "Academic Research",
        "body": "Search 250M+ academic works via OpenAlex. No API key required.\n\nBuilt by Topanga — AI Research Consultant"
      },
      {
        "title": "Search papers by topic",
        "body": "python3 scripts/scholar-search.py search \"transformer architectures\" --limit 10"
      },
      {
        "title": "Search by author",
        "body": "python3 scripts/scholar-search.py author \"Yann LeCun\" --limit 5"
      },
      {
        "title": "Look up by DOI",
        "body": "python3 scripts/scholar-search.py doi \"10.1038/s41586-021-03819-2\""
      },
      {
        "title": "Get citation chain (papers that cite a work)",
        "body": "python3 scripts/scholar-search.py citations \"10.1038/s41586-021-03819-2\" --direction both"
      },
      {
        "title": "Deep read (fetch abstract + full text when available)",
        "body": "python3 scripts/scholar-search.py deep \"10.1038/s41586-021-03819-2\""
      },
      {
        "title": "JSON output for programmatic use",
        "body": "python3 scripts/scholar-search.py search \"CRISPR\" --json"
      },
      {
        "title": "Literature Review Workflow",
        "body": "Automated multi-step literature review:\n\npython3 scripts/literature-review.py \"algorithmic literacy in education\" --papers 30 --output review.md\n\nThis will:\n\nSearch for papers across multiple query variations\nDeduplicate and rank by relevance + citations\nIdentify thematic clusters\nGenerate a structured synthesis in markdown\n\nOptions:\n\n--papers N — Target number of papers (default: 20)\n--output FILE — Write review to file (default: stdout)\n--years 2020-2025 — Restrict publication year range\n--json — Output structured JSON instead of markdown"
      },
      {
        "title": "Output Format",
        "body": "All search commands return structured data per paper:\n\nTitle and publication year\nAuthors (up to 5)\nAbstract (when available)\nCitation count\nDOI\nOpen access URL (when available)\nSource journal/venue"
      },
      {
        "title": "Tips",
        "body": "OpenAlex sorts by relevance by default; use --sort citations for most-cited\nCombine search + deep for quick triage: search first, deep-read promising hits\nThe literature review script caches results in /tmp/litreview_cache/ to avoid re-fetching\nFor full-text PDFs, pipe DOIs to your PDF extraction tool"
      }
    ],
    "body": "Academic Research\n\nSearch 250M+ academic works via OpenAlex. No API key required.\n\nBuilt by Topanga — AI Research Consultant\n\nQuick Start\nSearch papers by topic\npython3 scripts/scholar-search.py search \"transformer architectures\" --limit 10\n\nSearch by author\npython3 scripts/scholar-search.py author \"Yann LeCun\" --limit 5\n\nLook up by DOI\npython3 scripts/scholar-search.py doi \"10.1038/s41586-021-03819-2\"\n\nGet citation chain (papers that cite a work)\npython3 scripts/scholar-search.py citations \"10.1038/s41586-021-03819-2\" --direction both\n\nDeep read (fetch abstract + full text when available)\npython3 scripts/scholar-search.py deep \"10.1038/s41586-021-03819-2\"\n\nJSON output for programmatic use\npython3 scripts/scholar-search.py search \"CRISPR\" --json\n\nLiterature Review Workflow\n\nAutomated multi-step literature review:\n\npython3 scripts/literature-review.py \"algorithmic literacy in education\" --papers 30 --output review.md\n\n\nThis will:\n\nSearch for papers across multiple query variations\nDeduplicate and rank by relevance + citations\nIdentify thematic clusters\nGenerate a structured synthesis in markdown\n\nOptions:\n\n--papers N — Target number of papers (default: 20)\n--output FILE — Write review to file (default: stdout)\n--years 2020-2025 — Restrict publication year range\n--json — Output structured JSON instead of markdown\nOutput Format\n\nAll search commands return structured data per paper:\n\nTitle and publication year\nAuthors (up to 5)\nAbstract (when available)\nCitation count\nDOI\nOpen access URL (when available)\nSource journal/venue\nTips\nOpenAlex sorts by relevance by default; use --sort citations for most-cited\nCombine search + deep for quick triage: search first, deep-read promising hits\nThe literature review script caches results in /tmp/litreview_cache/ to avoid re-fetching\nFor full-text PDFs, pipe DOIs to your PDF extraction tool"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/rogerSuperBuilderAlpha/academic-research",
    "publisherUrl": "https://clawhub.ai/rogerSuperBuilderAlpha/academic-research",
    "owner": "rogerSuperBuilderAlpha",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/academic-research",
    "downloadUrl": "https://openagent3.xyz/downloads/academic-research",
    "agentUrl": "https://openagent3.xyz/skills/academic-research/agent",
    "manifestUrl": "https://openagent3.xyz/skills/academic-research/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/academic-research/agent.md"
  }
}