# Send baidu-nearby 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-nearby",
    "name": "baidu-nearby",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/longjf25/baidu-nearby",
    "canonicalUrl": "https://clawhub.ai/longjf25/baidu-nearby",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/baidu-nearby",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=baidu-nearby",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/baidu_direction.py",
      "scripts/baidu_nearby.py",
      "scripts/baidu_search.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/baidu-nearby"
    },
    "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-nearby",
    "downloadUrl": "https://openagent3.xyz/downloads/baidu-nearby",
    "agentUrl": "https://openagent3.xyz/skills/baidu-nearby/agent",
    "manifestUrl": "https://openagent3.xyz/skills/baidu-nearby/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/baidu-nearby/agent.md"
  }
}
```
## Documentation

### Baidu Skills for OpenClaw

百度能力集合，提供搜索和位置服务。

### 功能

命令说明baidu_search百度网页搜索baidu_direction百度地图路线规划baidu_nearby附近场所推荐

### 配置

设置百度 API Key（LBS 位置服务需要）：

export BAIDU_API_KEY="你的百度AK"

获取 AK：

访问 https://lbsyun.baidu.com/
注册开发者账号
创建应用获取 AK

### 百度搜索

python scripts/baidu_search.py "搜索关键词" [结果数量]

### 路线规划

python scripts/baidu_direction.py "起点地址" "终点地址" [driving|riding|walking|transit]

### 附近场所推荐

python scripts/baidu_nearby.py "位置" [类别] [半径(米)] [数量]

支持的类别：

餐饮/美食/餐厅
娱乐/休闲
景点/旅游/景区
酒店/住宿
购物/商场/超市
交通/地铁/公交

示例：

# 搜索三里屯附近美食
python scripts/baidu_nearby.py "北京市朝阳区三里屯" 餐饮 1000 5

# 搜索天安门附近景点
python scripts/baidu_nearby.py "天安门" 景点 5000 10

# 使用坐标搜索
python scripts/baidu_nearby.py "39.9,116.4" 娱乐

### 依赖

纯 Python 标准库实现，无需额外依赖。

### 安全说明

使用系统默认 SSL 证书验证
输入参数已做验证和清理
仅支持 HTTP/HTTPS 协议
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: longjf25
- Version: 1.0.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/baidu-nearby)
- [Send to Agent page](https://openagent3.xyz/skills/baidu-nearby/agent)
- [JSON manifest](https://openagent3.xyz/skills/baidu-nearby/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/baidu-nearby/agent.md)
- [Download page](https://openagent3.xyz/downloads/baidu-nearby)