# Send Baidu Search Node to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "baidu-search-node",
    "name": "Baidu Search Node",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/wsh66660/baidu-search-node",
    "canonicalUrl": "https://clawhub.ai/wsh66660/baidu-search-node",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/baidu-search-node",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=baidu-search-node",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "baidusearch.js",
      "package-lock.json",
      "package.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "baidu-search-node",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T10:55:06.364Z",
      "expiresAt": "2026-05-07T10:55:06.364Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=baidu-search-node",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=baidu-search-node",
        "contentDisposition": "attachment; filename=\"baidu-search-node-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "baidu-search-node"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/baidu-search-node"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/baidu-search-node",
    "downloadUrl": "https://openagent3.xyz/downloads/baidu-search-node",
    "agentUrl": "https://openagent3.xyz/skills/baidu-search-node/agent",
    "manifestUrl": "https://openagent3.xyz/skills/baidu-search-node/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/baidu-search-node/agent.md"
  }
}
```
## Documentation

### Baidu Search Skill

百度搜索命令行工具，通过 Node.js 脚本爬取百度搜索结果（无需 API key）。

### 激活条件

当用户提到：

百度搜索
用百度搜一下
baidu search
使用 baidu_search 工具

### 工具实现

使用 baidusearch.js 脚本，位于 /Users/mac/.openclaw/workspace/skills/baidu-search/baidusearch.js

### 使用方式

# 基本搜索
node baidusearch.js "搜索内容"

# 指定结果数量
node baidusearch.js "搜索内容" -n 10

# 调试模式
node baidusearch.js "搜索内容" -n 5 -d 1

### 参数说明

参数类型必需默认值说明[keyword]string是-搜索关键字-n, --numnumber否10返回结果数量-d, --debugnumber否0调试模式（0-关闭，1-打开）

### 返回格式

每条搜索结果包含：

rank - 排名
title - 标题
abstract - 摘要/描述
url - 链接

### 与百度官方 API 技能对比

功能baidu-search-node (本技能)baidu-search (官方 API)API Key❌ 不需要✅ 需要 BAIDU_API_KEY资源类型过滤❌ 仅网页✅ web/video/image/aladdin时间过滤❌ 不支持✅ week/month/semiyear/year网站过滤❌ 不支持✅ 匹配/屏蔽网站安全搜索❌ 不支持✅ 支持实现方式网页爬虫百度千帆 API

### 配置

在 openclaw.json 中添加：

{
  tools: {
    baiduSearch: {
      enabled: true,
      scriptPath: "/Users/mac/.openclaw/workspace/skills/baidu-search/baidusearch.js",
      defaultCount: 5,
      timeout: 30000,
    },
  },
}

### 使用方法

// 执行百度搜索
const { execSync } = require('child_process');

function baiduSearch(query, count = 5) {
  const scriptPath = '/Users/mac/.openclaw/workspace/skills/baidu-search/baidusearch.js';
  const cmd = \`node "${scriptPath}" "${query}" -n ${count}\`;
  const output = execSync(cmd, { encoding: 'utf-8' });
  return parseOutput(output);
}

### 依赖安装

# 进入 skill 目录
cd /Users/mac/.openclaw/workspace/skills/baidu-search

# 安装依赖
npm install axios cheerio commander

### 注意事项

需要 Node.js 环境
依赖 axios、cheerio、commander 包
搜索结果来自百度网页，可能包含广告
建议设置合理的 timeout 避免请求超时
无需 API key，开箱即用
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: wsh66660
- Version: 1.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T10:55:06.364Z
- Expires at: 2026-05-07T10:55:06.364Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/baidu-search-node)
- [Send to Agent page](https://openagent3.xyz/skills/baidu-search-node/agent)
- [JSON manifest](https://openagent3.xyz/skills/baidu-search-node/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/baidu-search-node/agent.md)
- [Download page](https://openagent3.xyz/downloads/baidu-search-node)