# Send baidu scholar search to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "baidu-scholar-search-skill",
    "name": "baidu scholar search",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ide-rea/baidu-scholar-search-skill",
    "canonicalUrl": "https://clawhub.ai/ide-rea/baidu-scholar-search-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/baidu-scholar-search-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=baidu-scholar-search-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "baidu_scholar_search.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.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/baidu-scholar-search-skill"
    },
    "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."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/baidu-scholar-search-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/baidu-scholar-search-skill",
    "agentUrl": "https://openagent3.xyz/skills/baidu-scholar-search-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/baidu-scholar-search-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/baidu-scholar-search-skill/agent.md"
  }
}
```
## Documentation

### Features

Search Chinese and English academic literature by keyword, including journal papers, conference papers, dissertations, etc.

### Basic Usage

bash baidu_scholar_search.sh "keyword"
bash baidu_scholar_search.sh "keyword" page_number
bash baidu_scholar_search.sh "keyword" page_number include_abstract

### Parameter Description

ParameterRequiredDefaultDescriptionkeyword✅-Search term, e.g., "machine learning" or "cancer immunotherapy"page_number❌0Starts from 0, 0=first page, 1=second pageinclude_abstract❌falsetrue=return detailed abstract, false=return only title and basic info

### Default Behavior

No abstract returned - Fast response, suitable for quickly browsing literature lists
Start from page 1

### When to Return Abstract

User explicitly requests "abstract", "include abstract", "detailed content"
User says "I need to understand the paper content", "give me detailed explanation"

### When NOT to Return Abstract

User only says "search", "retrieve", "check"
User says "see what's available", "help me find"
No explicit request for abstract information

### Endpoint

GET https://qianfan.baidubce.com/v2/tools/baidu_scholar/search

### Request Parameters

wd - Search keyword (required)
pageNum - Page number (optional, default 0)
enable_abstract - Whether to return abstract (optional, default false)

### Response Fields

title - Paper title
abstract - Abstract (only returned when enable_abstract=true)
keyword - Keywords
paperId - Paper ID
publishYear - Publication year
url - Baidu Scholar link

### Quick Search (No Abstract)

bash baidu_scholar_search.sh "cancer immunotherapy"
# Returns title, year, keywords and other basic information

### Detailed Search (With Abstract)

bash baidu_scholar_search.sh "cancer immunotherapy" 0 true
# Returns detailed information including abstract

### Pagination Search

bash baidu_scholar_search.sh "machine learning" 1
# Search page 2 (no abstract)

### Notes

Need to set BAIDU_API_KEY environment variable
Keywords must be wrapped in quotes
Returning abstract significantly increases response time
Both Chinese and English keywords are supported
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ide-rea
- Version: 1.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/baidu-scholar-search-skill)
- [Send to Agent page](https://openagent3.xyz/skills/baidu-scholar-search-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/baidu-scholar-search-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/baidu-scholar-search-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/baidu-scholar-search-skill)