# Send Zhipu AI Search 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "another-zhipu-web-search",
    "name": "Zhipu AI Search",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/xianglifei/another-zhipu-web-search",
    "canonicalUrl": "https://clawhub.ai/xianglifei/another-zhipu-web-search",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/another-zhipu-web-search",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=another-zhipu-web-search",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "requirements.txt",
      "README.md",
      "search_util.py",
      "SKILL.md",
      ".claude/settings.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/another-zhipu-web-search"
    },
    "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/another-zhipu-web-search",
    "downloadUrl": "https://openagent3.xyz/downloads/another-zhipu-web-search",
    "agentUrl": "https://openagent3.xyz/skills/another-zhipu-web-search/agent",
    "manifestUrl": "https://openagent3.xyz/skills/another-zhipu-web-search/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/another-zhipu-web-search/agent.md"
  }
}
```
## Documentation

### 智谱 Web Search Skill

使用智谱 AI 的 Web Search API 进行网络搜索，获取实时、结构化的搜索结果。

### 前置条件

获取智谱 BigModel 开放平台的 API Key：https://bigmodel.cn/usercenter/apikeys
配置 API Key（见下方说明）

### API Key 配置

在使用前，请设置您的智谱 API Key：

export ZHIPUAI_API_KEY="your-api-key-here"

重要: 请使用环境变量方式配置 API Key，不要将密钥硬编码在脚本或配置文件中。

### 快速开始

使用提供的 search_util.py 脚本进行搜索：

# 基本搜索
python search_util.py "搜索内容"

# 查看帮助
python search_util.py --help

### 搜索引擎选项

引擎编码说明search_std智谱基础版搜索引擎search_pro智谱高阶版搜索引擎（推荐）search_pro_sogou搜狗搜索search_pro_quark夸克搜索

### 搜索参数

参数类型必填说明search_queryString是搜索内容，建议不超过 70 字符search_engineString是搜索引擎编码search_intentBoolean是是否进行意图识别countInt否返回结果条数 (1-50, 默认 10)search_recency_filterString否时间筛选: oneDay/oneWeek/oneMonth/oneYear/noLimitcontent_sizeString否内容长度: medium/highsearch_domain_filterString否限定域名

### API 概览

请求地址: https://open.bigmodel.cn/api/paas/v4/web_search

认证方式: 使用智谱 API Key，通过 Authorization header 传递

### 响应结构

{
  "id": "任务ID",
  "created": 1748261757,
  "search_intent": [
    {
      "query": "原始搜索query",
      "intent": "SEARCH_ALL|SEARCH_NONE|SEARCH_ALWAYS",
      "keywords": "改写后的搜索关键词"
    }
  ],
  "search_result": [
    {
      "title": "标题",
      "content": "内容摘要",
      "link": "结果链接",
      "media": "网站名称",
      "icon": "网站图标",
      "refer": "角标序号",
      "publish_date": "网站发布时间"
    }
  ]
}

### 工作流程

确认用户已配置 API Key
根据用户需求选择合适的搜索参数
执行搜索并以友好格式展示结果（标题、来源、日期、链接、摘要）

### 错误码

错误码说明1701网络搜索并发已达上限，请稍后重试1702系统未找到可用的搜索引擎服务1703搜索引擎未返回有效数据，请调整查询条件

### 更多信息

智谱 Web Search API 文档
产品价格
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: xianglifei
- 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-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/another-zhipu-web-search)
- [Send to Agent page](https://openagent3.xyz/skills/another-zhipu-web-search/agent)
- [JSON manifest](https://openagent3.xyz/skills/another-zhipu-web-search/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/another-zhipu-web-search/agent.md)
- [Download page](https://openagent3.xyz/downloads/another-zhipu-web-search)