TopRank Skills

Home / Claw Skills / 搜索 / baidu-baike-search
Official OpenClaw rules 36%

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.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 baidu-baike-search 技能。 若已安装,则直接安装 baidu-baike-search 技能。

Overview

Skill Key
ide-rea/baidu-baike-search
Author
ide-rea
Source Repo
openclaw/skills
Version
-
Source Path
skills/ide-rea/baidu-baike-search
Latest Commit SHA
c0ecb775f0c30c11a501afaded20a8eafbf693d9

Extracted Content

SKILL.md excerpt

# 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.
3.  **BAIDU_API_KEY:** BAIDU_API_KEY available, need to go to the baidu cloud platform(https://login.bce.baidu.com) registered account, if you already have account will go to get the API KEY (https://console.bce.baidu.com/qianfan/ais/console/apiKey)

## 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
5. The search shell script located at `scripts/baidu_baike.sh`

## APIS

### LemmaList API 

#### Parameters

- `lemma_title`: The search entr...

Related Claw Skills