Install
openclaw skills install bigmodel-web-search-fallbackUse Zhipu / BigModel web search as a non-invasive fallback when the built-in web_search route is unavailable, failing, or the user explicitly wants 智谱 / BigM...
openclaw skills install bigmodel-web-search-fallbackUse this skill when you want Zhipu search without modifying OpenClaw core.
It provides a local wrapper script with two execution modes:
raw — call Zhipu Web Search API directly and get structured resultschat — call Zhipu chat completions with the built-in web_search tool and get a synthesized answerMake sure the OpenClaw host has one of these environment variables set:
ZAI_API_KEYZHIPUAI_API_KEYBIGMODEL_API_KEYIf none is present, stop and report missing auth instead of retrying blindly.
This skill supports four Zhipu search engines:
search_std — default, lowest-cost/basic searchsearch_pro — stronger general search qualitysearch_pro_sogou — 搜狗-backed routesearch_pro_quark — 夸克-backed routeDefault to search_std unless the user asks for:
When the user explicitly names an engine, honor it.
raw when you want structured results such as title/link/summary/media/date and you will write the final answer yourself.chat when you want GLM to search and summarize in one call.search_std first for routine lookups.search_pro when quality matters more than cost.search_pro_sogou or search_pro_quark when the user wants to test or compare engines.Run commands from the skill directory or use absolute paths.
python scripts/zhipu_web_search.py raw --query "OpenClaw 是什么" --engine search_std --count 5 --pretty
python scripts/zhipu_web_search.py chat --query "请简要说明 OpenClaw 是什么,并给出搜索来源。" --engine search_std --count 5 --pretty
python scripts/zhipu_web_search.py raw --query "今天的 AI 新闻" --engine search_pro --count 5 --pretty
python scripts/zhipu_web_search.py raw --query "OpenClaw 是什么" --engine search_pro_sogou --count 5 --pretty
python scripts/zhipu_web_search.py raw --query "OpenClaw 是什么" --engine search_pro_quark --count 5 --pretty
raw results or a chat-generated answer.search_stdsearch_pro for better qualitysearch_pro_sogou / search_pro_quark for explicit engine routing or comparisonraw, summarize the returned results yourself and cite the best links.chat, still sanity-check the answer before sending it.web_search, explain that this is a non-invasive fallback and does not replace OpenClaw core tooling.--domain-filter, --recency, --content-size, --count, and --engine.references/api-notes.md if you need API details, engine guidance, or more examples.