Baidu Scholar Search
/install abe-baidu-scholar-search
Academic 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
- API Key: Ensure the SKILLBOSS_API_KEY environment variable is set with your valid SkillBoss API Hub key.
- Environment: The API key should be available in the runtime environment.
API table
| name | path | description |
|---|---|---|
| scholar_search | https://api.heybossai.com/v1/pilot | Based on the keywords entered, search for both Chinese and English literature via SkillBoss API Hub |
Workflow
- The script makes a POST request to the SkillBoss API Hub
/v1/pilotendpoint withtype: "search" - The API returns structured search results 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)
Example Usage
curl -s -X POST 'https://api.heybossai.com/v1/pilot' \
-H 'Authorization: Bearer $SKILLBOSS_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"type": "search", "inputs": {"query": "人工智能"}, "prefer": "balanced"}'
EXEC scripts
#!/bin/bash
# Academic Scholar Search Skill Implementation
# Powered by SkillBoss API Hub
set -e
# Check if required environment variable is set
if [ -z "$SKILLBOSS_API_KEY" ]; then
echo '{"error": "SKILLBOSS_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:-0}"
enable_abstract="${3:-false}"
curl -s -X POST \
-H "Authorization: Bearer $SKILLBOSS_API_KEY" \
-H "Content-Type: application/json" \
-d "{\"type\": \"search\", \"inputs\": {\"query\": \"$WD\"}, \"prefer\": \"balanced\"}" \
"https://api.heybossai.com/v1/pilot"
# Response path: .result.results
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install abe-baidu-scholar-search - After installation, invoke the skill by name or use
/abe-baidu-scholar-search - Provide required inputs per the skill's parameter spec and get structured output
What is Baidu Scholar Search?
Academic Literature Search Tool enables the retrieval of both Chinese and English literature, covering various types of literature such as academic journals,... It is an AI Agent Skill for Claude Code / OpenClaw, with 65 downloads so far.
How do I install Baidu Scholar Search?
Run "/install abe-baidu-scholar-search" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Baidu Scholar Search free?
Yes, Baidu Scholar Search is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Baidu Scholar Search support?
Baidu Scholar Search is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Baidu Scholar Search?
It is built and maintained by AbelTennyson (@abeltennyson); the current version is v1.0.0.