{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/baidu-nearby",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=baidu-nearby",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/baidu_direction.py",
      "scripts/baidu_nearby.py",
      "scripts/baidu_search.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/baidu-nearby",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Baidu Skills for OpenClaw",
        "body": "百度能力集合，提供搜索和位置服务。"
      },
      {
        "title": "功能",
        "body": "命令说明baidu_search百度网页搜索baidu_direction百度地图路线规划baidu_nearby附近场所推荐"
      },
      {
        "title": "配置",
        "body": "设置百度 API Key（LBS 位置服务需要）：\n\nexport BAIDU_API_KEY=\"你的百度AK\"\n\n获取 AK：\n\n访问 https://lbsyun.baidu.com/\n注册开发者账号\n创建应用获取 AK"
      },
      {
        "title": "百度搜索",
        "body": "python scripts/baidu_search.py \"搜索关键词\" [结果数量]"
      },
      {
        "title": "路线规划",
        "body": "python scripts/baidu_direction.py \"起点地址\" \"终点地址\" [driving|riding|walking|transit]"
      },
      {
        "title": "附近场所推荐",
        "body": "python scripts/baidu_nearby.py \"位置\" [类别] [半径(米)] [数量]\n\n支持的类别：\n\n餐饮/美食/餐厅\n娱乐/休闲\n景点/旅游/景区\n酒店/住宿\n购物/商场/超市\n交通/地铁/公交\n\n示例：\n\n# 搜索三里屯附近美食\npython scripts/baidu_nearby.py \"北京市朝阳区三里屯\" 餐饮 1000 5\n\n# 搜索天安门附近景点\npython scripts/baidu_nearby.py \"天安门\" 景点 5000 10\n\n# 使用坐标搜索\npython scripts/baidu_nearby.py \"39.9,116.4\" 娱乐"
      },
      {
        "title": "依赖",
        "body": "纯 Python 标准库实现，无需额外依赖。"
      },
      {
        "title": "安全说明",
        "body": "使用系统默认 SSL 证书验证\n输入参数已做验证和清理\n仅支持 HTTP/HTTPS 协议"
      }
    ],
    "body": "Baidu Skills for OpenClaw\n\n百度能力集合，提供搜索和位置服务。\n\n功能\n命令\t说明\nbaidu_search\t百度网页搜索\nbaidu_direction\t百度地图路线规划\nbaidu_nearby\t附近场所推荐\n配置\n\n设置百度 API Key（LBS 位置服务需要）：\n\nexport BAIDU_API_KEY=\"你的百度AK\"\n\n\n获取 AK：\n\n访问 https://lbsyun.baidu.com/\n注册开发者账号\n创建应用获取 AK\n使用方法\n百度搜索\npython scripts/baidu_search.py \"搜索关键词\" [结果数量]\n\n路线规划\npython scripts/baidu_direction.py \"起点地址\" \"终点地址\" [driving|riding|walking|transit]\n\n附近场所推荐\npython scripts/baidu_nearby.py \"位置\" [类别] [半径(米)] [数量]\n\n\n支持的类别：\n\n餐饮/美食/餐厅\n娱乐/休闲\n景点/旅游/景区\n酒店/住宿\n购物/商场/超市\n交通/地铁/公交\n\n示例：\n\n# 搜索三里屯附近美食\npython scripts/baidu_nearby.py \"北京市朝阳区三里屯\" 餐饮 1000 5\n\n# 搜索天安门附近景点\npython scripts/baidu_nearby.py \"天安门\" 景点 5000 10\n\n# 使用坐标搜索\npython scripts/baidu_nearby.py \"39.9,116.4\" 娱乐\n\n依赖\n\n纯 Python 标准库实现，无需额外依赖。\n\n安全说明\n使用系统默认 SSL 证书验证\n输入参数已做验证和清理\n仅支持 HTTP/HTTPS 协议"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/longjf25/baidu-nearby",
    "publisherUrl": "https://clawhub.ai/longjf25/baidu-nearby",
    "owner": "longjf25",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}