Zhipu AI Web Search Tool - Provides flexible search engine capabilities directly via cURL. Use when: - Need to search web information for the latest data - N...
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install zhipu-web-search或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install zhipu-web-search⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/zhipu-web-search/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: zhipu-web-search description: | Zhipu AI Web Search Tool - Provides flexible search engine capabilities directly via cURL.
Use when: - Need to search web information for the latest data - Need specific search engines (defaults to Quark, supports Sogou, Zhipu Search) - Need to filter search results by time range or domain - Need to control result count and detail level
Supported search engines: search_std (basic), search_pro (advanced), search_pro_sogou (Sogou), search_pro_quark (Quark - default) metadata: { "openclaw": { "requires": { "env": ["ZHIPU_API_KEY"], "bins": ["curl"] }, }, } ---
Web search via Zhipu AI's dedicated API (/paas/v4/web_search), refactored to use lightweight cURL instead of Python or jq. It defaults to using the search_pro_quark engine with 20 results.
curl --request POST \
--url https://open.bigmodel.cn/api/paas/v4/web_search \
--header "Authorization: Bearer $ZHIPU_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"search_query": "OpenClaw framework",
"search_engine": "search_pro_quark",
"search_intent": false,
"count": 20
}'
A wrapper shell script is provided for convenience.
# Basic Search (defaults to search_pro_quark and 20 results)
bash scripts/zhipu_search.sh --query "AI development trends"
# Advanced Search
bash scripts/zhipu_search.sh \
--query "latest open source LLMs" \
--engine "search_pro_sogou" \
--count 50 \
--intent \
--recency "oneWeek"
| Parameter | Type | Required | Default | Description | |-----------|------|----------|---------|-------------| | search_query | string | ✅ | - | Search content, recommended ≤70 chars | | search_engine | enum | ✅ | search_pro_quark | search_std / search_pro / search_pro_sogou / search_pro_quark | | search_intent | boolean | - | false | Enable search intent recognition | | count | integer | - | 20 | Result count, range 1-50 | | search_domain_filter | string | - | - | Whitelist domain filter | | search_recency_filter | enum | - | noLimit | oneDay / oneWeek / oneMonth / oneYear / noLimit | | content_size | enum | - | medium | medium (summary) / high (detailed) |
| Engine | Use Case | |--------|----------| | search_pro_quark | Quark search, tailored for specific advanced scenarios (Default) | | search_std | Basic search, regular Q&A | | search_pro | Advanced search, need more accurate results | | search_pro_sogou | Sogou search, China domestic content |
The API returns JSON directly.
{
"id": "task-id",
"created": 1704067200,
"request_id": "request-id",
"search_intent": [
{
"query": "original query",
"intent": "SEARCH_ALL",
"keywords": "rewritten keywords"
}
],
"search_result": [
{
"title": "title",
"content": "content summary",
"link": "result link",
"media": "site name",
"icon": "site icon",
"refer": "reference number",
"publish_date": "publish date"
}
]
}
ZHIPU_API_KEY must be configured.curl command must be available in your system path.安装 zhipu web search 后,可以对 AI 说这些话来触发它
Help me get started with zhipu web search
Explains what zhipu web search does, walks through the setup, and runs a quick demo based on your current project
Use zhipu web search to zhipu AI Web Search Tool - Provides flexible search engine capabili...
Invokes zhipu web search with the right parameters and returns the result directly in the conversation
What can I do with zhipu web search in my data & analytics workflow?
Lists the top use cases for zhipu web search, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/zhipu-web-search/ 目录(个人级,所有项目可用),或 .claude/skills/zhipu-web-search/(项目级)。重启 AI 客户端后,用 /zhipu-web-search 主动调用,或让 AI 根据上下文自动发现并使用。
zhipu web search 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
zhipu web search 可免费安装使用。请查阅仓库了解许可证信息。
Zhipu AI Web Search Tool - Provides flexible search engine capabilities directly via cURL. Use when: - Need to search web information for the latest data - N...
zhipu web search 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my data & analytics tasks using zhipu web search
Identifies repetitive steps in your workflow and sets up zhipu web search to handle them automatically