Jump to related tools in the same category or review the original source on GitHub.

Coding Agents & IDEs @ide-rea Updated 7/16/2026 11,417 downloads 5 stars Security: Pass

📖 Baidu Baike Data OpenClaw Plugin & Skill | ClawHub

Looking to integrate Baidu Baike Data into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate coding agents & ides tasks instantly, without having to write custom tools from scratch.

What this skill does

The Baidu Baike Component is a knowledge service tool designed to query authoritative encyclopedia explanations for various nouns. Its core function is given a specific "noun" (object, person, location, concept, event, etc.) provided by the user, it returns a standardized, detailed entry explanation sourced from Baidu Baike.

Install

ClawHub CLI
openclaw skills install @ide-rea/baidu-baike-data
Node.js (npx)
npx clawhub@latest install baidu-baike-data

Full SKILL.md

Open original
Metadata table.
namedescriptionhomepage
baidu-baike-dataThe Baidu Baike Component is a knowledge service tool designed to query authoritative encyclopedia explanations for various nouns. Its core function is given a specific "noun" (object, person, location, concept, event, etc.) provided by the user, it returns a standardized, detailed entry explanation sourced from Baidu Baike.https://baike.baidu.com/

SKILL.md content below is scrollable.

Baidu Baike

Query encyclopedia entries from Baidu Baike.

Two Usage Scenarios

Scenario 1: Direct Search

Get default matching entry for a keyword.

python3 scripts/baidu_baike.py --search_type=lemmaTitle --search_key="keyword"

Scenario 2: Homonym Resolution

When term has multiple entries, list them and select by ID.

# List entries with same name
python3 scripts/baidu_baike.py --search_type=lemmaList --search_key="keyword" --top_k=5

# Get specific entry by ID
python3 scripts/baidu_baike.py --search_type=lemmaId --search_key="entry_id"

API

  • LemmaList: List entries with same title
  • LemmaContent: Get entry details by title or ID

Setup

export BAIDU_API_KEY="your_api_key"

Workflow

  1. Extract noun from query
  2. For ambiguous terms, call LemmaList first
  3. User selects entry from list
  4. Call LemmaContent with selected ID
  5. Return structured data
ClawHub Registry URL: https://clawhub.ai/ide-rea/skills/baidu-baike-data

Related skills

If this matches your use case, these are close alternatives in the same category.