skills$openclaw/baidu-scholar-search
jlpjavawayup226

by jlpjavawayup

baidu-scholar-search – OpenClaw Skill

baidu-scholar-search is an OpenClaw Skills integration for research workflows. Baidu Academic Search Tool enables the retrieval of both Chinese and English literature, covering various types of literature such as academic journals, conference papers, and dissertations.

226 stars1.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026research

Skill Snapshot

namebaidu-scholar-search
descriptionBaidu Academic Search Tool enables the retrieval of both Chinese and English literature, covering various types of literature such as academic journals, conference papers, and dissertations. OpenClaw Skills integration.
ownerjlpjavawayup
repositoryjlpjavawayup/baidu-scholar-search
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @jlpjavawayup/baidu-scholar-search
last updatedFeb 7, 2026

Maintainer

jlpjavawayup

jlpjavawayup

Maintains baidu-scholar-search in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
298 B
baidu_scholar_search.sh
550 B
SKILL.md
2.3 KB
SKILL.md

Baidu Scholar Search

Based on the keywords entered by the user, search for both Chinese and English literature, covering various types of literature such as academic journals, conference papers, and dissertations

Setup

  1. API Key: Ensure the BAIDU_API_KEY environment variable is set with your valid API key.
  2. Environment: The API key should be available in the runtime environment.

API table

namepathdescription
scholar_search/v2/tools/baidu_scholar/searchBased on the keywords entered, search for both Chinese and English literature

Workflow

  1. The script makes a GET request to the Baidu Scholar Search API
  2. The API returns structured search results with abstract, keyword, paperId, title etc. about a list of literature

Scholar Search API

Parameters

  • wd: The search keywords(required,e.g. 'machine learning')
  • pageNum: page num (default: 0)
  • enable_abstract: whether to enable abstract (default: false), if true return the abstract of the literature

Example Usage

curl -XGET 'https://qianfan.baidubce.com/v2/tools/baidu_scholar/search?wd=人工智能&enable_abstract=true' \
-H 'Authorization: Bearer API_KEY'

EXEC scripts

#!/bin/bash

# Baidu Scholar Search Skill Implementation

set -e

# Check if required environment variable is set
if [ -z "$BAIDU_API_KEY" ]; then
    echo '{"error": "BAIDU_API_KEY environment variable not set"}'
    exit 1
fi

WD="$1"
if [ -z "$wd" ]; then
    echo '{"error": "Missing wd parameter"}'
    exit 1
fi
pageNum="$2"
if [ -z "$pageNum" ]; then
    pageNum=0
fi
enable_abstract="$3"
if [ -z "$pageNum" ]; then
    enable_abstract=false
fi
curl -XGET "https://qianfan.baidubce.com/v2/tools/baidu_scholar/search?wd=$WD&pageNum=$pageNum&enable_abstract=$enable_abstract" -H "Authorization: Bearer $BAIDU_API_KEY" 
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install baidu-scholar-search?

Run openclaw add @jlpjavawayup/baidu-scholar-search in your terminal. This installs baidu-scholar-search into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/jlpjavawayup/baidu-scholar-search. Review commits and README documentation before installing.