首页龙虾技能列表 › baidu baike search — 技能工具

📖 baidu baike search — 技能工具

v1.0.1

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.

1· 2,700·16 当前·16 累计·💬 1
by @baiduqianfangroup (baidu_qianfan)·MIT-0
下载技能包
License
MIT-0
最后更新
2026/2/28
安全扫描
VirusTotal
无害
查看报告
OpenClaw
可疑
high confidence
The skill's code and runtime instructions require a BAIDU_API_KEY and will send it to Baidu's appbuilder endpoint, but the registry metadata does not declare any required environment variables — this mismatch and minor doc inconsistencies warrant caution.
评估建议
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 k...
详细分析 ▾
用途与能力
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.
指令范围
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.
安装机制
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.
凭证需求
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).
持久化与权限
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.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.12026/2/4

- No user-facing changes in this version. - Documentation reformatted with a minor wording adjustment to the description.

● 无害

安装命令 点击复制

官方npx clawhub@latest install baidu-baike
镜像加速npx clawhub@latest install baidu-baike --registry https://cn.clawhub-mirror.com

技能文档

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

namepathdescription
LemmaList/v2/baike/lemma/get_list_by_titleQuery 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_contentQuery 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 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'

数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务