← 返回 Skills 市场
baidu baike search
作者
baidu_qianfan
· GitHub ↗
· v1.0.1
2852
总下载
1
收藏
16
当前安装
2
版本数
在 OpenClaw 中安装
/install baidu-baike
功能描述
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.
使用说明 (SKILL.md)
Baidu Baike
This skill allows OpenClaw agents to search detailed entry explanations via Baidu Baike .
Setup
- API Key: Ensure the BAIDU_API_KEY environment variable is set with your valid API key.
- 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
- 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
- The script makes a GET request to the Baidu Baike Search API
- 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
- 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 nametop_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'
安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install baidu-baike - 安装完成后,直接呼叫该 Skill 的名称或使用
/baidu-baike触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
常见问题
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. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 2852 次。
如何安装 baidu baike search?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install baidu-baike」即可一键安装,无需额外配置。
baidu baike search 是免费的吗?
是的,baidu baike search 完全免费(开源免费),可自由下载、安装和使用。
baidu baike search 支持哪些平台?
baidu baike search 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 baidu baike search?
由 baidu_qianfan(@baiduqianfangroup)开发并维护,当前版本 v1.0.1。
推荐 Skills