← Back to Skills Marketplace
baiduqianfangroup

baidu baike search

by baidu_qianfan · GitHub ↗ · v1.0.1
cross-platform ⚠ suspicious
2852
Downloads
1
Stars
16
Active Installs
2
Versions
Install in OpenClaw
/install baidu-baike
Description
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.
README (SKILL.md)

Baidu Baike

This skill allows OpenClaw agents to search detailed entry explanations via Baidu Baike .

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

name path description
LemmaList /v2/baike/lemma/get_list_by_title Query the list of entries that are the same as this term, and the is_default field in the return represents the subject term
LemmaContent /v2/baike/lemma/get_content Query the entry explanation or detailed content of an entry based on the entry id or entry name, best to do so based on the entry ID

Workflow

  1. The skill only supports searching for detailed knowledge explanations of objectively existing things such as (things, people, place names, concepts, events), etc. Therefore, please extract such nouns before calling
  2. The script makes a GET request to the Baidu Baike Search API
  3. The API returns structured search results with lemma_id, desc, url, lemma summary, videos, relations and knowledge, if the "noun" is a well-known person or thing, the associated person or thing of this noun will be returned
  4. If the content queried based on the default term name is inaccurate, you can first query the term list by the LemmaList API, and then select the term ID that meets the requirements from the list to query the term content by LemmaContent API

APIS

LemmaList API

Parameters

  • lemma_title: The search entry name
  • top_k: Number of results to return (default: 5)

Example Usage

curl -XGET 'https://appbuilder.baidu.com/v2/baike/lemma/get_content?lemma_title=刘德华' \
-H 'Authorization: Bearer BAIDU_API_KEY'

LemmaContent API

Parameters

  • search_type: The type of search, optional values include: "lemmaTitle", "lemmaId"
  • search_key: The search key, either the entry name or entry ID

Example Usage

curl -XGET 'https://appbuilder.baidu.com/v2/baike/lemma/get_content?search_type=lemmaTitle&search_key=刘德华' \
-H 'Authorization: Bearer BAIDU_API_KEY'
Usage Guidance
This skill will send whatever BAIDU_API_KEY you provide to https://appbuilder.baidu.com when performing lookups — the behavior matches its stated purpose. However, the registry metadata does not declare the BAIDU_API_KEY requirement even though both SKILL.md and the script require it; that mismatch is suspicious. Before installing: (1) verify the skill's publisher or source because the 'Source' is unknown, (2) confirm you are comfortable providing a Baidu API key to this component and that the key has the minimal necessary scope, (3) prefer creating a dedicated/limited API key you can revoke if needed, and (4) correct or request corrected metadata (declare BAIDU_API_KEY) and review the script yourself — the code is short and readable. If you cannot verify the author or do not want to expose an API key, do not install.
Capability Analysis
Type: OpenClaw Skill Name: baidu-baike Version: 1.0.1 The skill is designed to query the Baidu Baike API, which is clearly aligned with its stated purpose. It uses `curl` to make API requests to `appbuilder.baidu.com` and authenticates using a `BAIDU_API_KEY` environment variable, which is standard practice for API integrations. There is no evidence of data exfiltration to unauthorized endpoints, malicious command execution, persistence mechanisms, or prompt injection attempts against the agent in `SKILL.md` that would deviate from its intended function.
Capability Assessment
Purpose & Capability
The name, description, and implementation all match the stated purpose (query Baidu Baike). Requiring curl and calling Baidu endpoints is coherent. However, the skill's registry metadata lists no required environment variables while both SKILL.md and the shipped shell script clearly require BAIDU_API_KEY; that metadata omission is inconsistent and should be corrected.
Instruction Scope
SKILL.md and the shell script limit actions to building curl GET requests to Baidu's appbuilder API and return the responses — scope is narrow and consistent with the stated purpose. Minor inconsistencies exist in examples: SKILL.md example uses the literal token text 'BAIDU_API_KEY' in the Authorization header (instead of showing it as a shell variable), which could confuse integrators but is not itself malicious.
Install Mechanism
There is no install spec (instruction-only pattern) and the only code is a small shell script. Nothing is downloaded from external URLs or installed automatically, so install-level risk is low.
Credentials
The script and SKILL.md require a BAIDU_API_KEY to call the Baidu API — a single API key is proportionate to the task. However, the registry metadata incorrectly lists no required env vars and does not declare BAIDU_API_KEY as the primary credential; this mismatch is a red flag (it may be an oversight, but it could also indicate sloppy or incomplete publishing practices).
Persistence & Privilege
The skill does not request always:true, does not ask to modify other skills or system configs, and is user-invocable only. It does not request elevated or persistent privileges.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install baidu-baike
  3. After installation, invoke the skill by name or use /baidu-baike
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
- No user-facing changes in this version. - Documentation reformatted with a minor wording adjustment to the description.
v1.0.0
Baidu Baike skill initial release: - Enables users to query authoritative explanations for terms (objects, people, places, concepts, events) from Baidu Baike. - Provides two API endpoints: one for listing possible entries (LemmaList) and one for retrieving detailed content (LemmaContent). - Requires setting a BAIDU_API_KEY environment variable. - Returns structured results including summaries, related topics, and more.
Metadata
Slug baidu-baike
Version 1.0.1
License
All-time Installs 17
Active Installs 16
Total Versions 2
Frequently Asked Questions

What is baidu baike search?

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. It is an AI Agent Skill for Claude Code / OpenClaw, with 2852 downloads so far.

How do I install baidu baike search?

Run "/install baidu-baike" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is baidu baike search free?

Yes, baidu baike search is completely free (open-source). You can download, install and use it at no cost.

Which platforms does baidu baike search support?

baidu baike search is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created baidu baike search?

It is built and maintained by baidu_qianfan (@baiduqianfangroup); the current version is v1.0.1.

💬 Comments