← All skills
Tencent SkillHub Β· Developer Tools

Zhipu Search

Zhipu AI Web Search Tool - Provides flexible search engine capabilities. Use when: - Need to search web information for latest data - Need specific search en...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Zhipu AI Web Search Tool - Provides flexible search engine capabilities. Use when: - Need to search web information for latest data - Need specific search en...

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/zhipu_search.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

Zhipu Search

Web search via Zhipu AI API, supporting multiple search engines and flexible parameter configuration.

Basic Search

# Use default parameters search_query = "OpenClaw latest version" search_engine = "search_std"

Advanced Search (Full Parameters)

search_query = "AI development trends" # Required, max 70 chars search_engine = "search_pro" # Required: search_std/search_pro/search_pro_sogou/search_pro_quark search_intent = true # Optional, default false, enable search intent recognition count = 20 # Optional, default 10, range 1-50 search_domain_filter = "example.com" # Optional, whitelist domain filter search_recency_filter = "oneWeek" # Optional: oneDay/oneWeek/oneMonth/oneYear/noLimit content_size = "high" # Optional: medium/high, control content detail level request_id = "unique-request-id" # Optional, unique request identifier user_id = "user-123456" # Optional, end user ID (6-128 chars)

Method 1: Direct Script Call (Recommended)

python scripts/zhipu_search.py \ --query "search content" \ --engine search_pro \ --count 10

Method 2: Use OpenClaw Tool

System will automatically select appropriate parameters based on needs.

API Parameter Reference

ParameterTypeRequiredDefaultDescriptionsearch_querystringβœ…-Search content, recommended ≀70 charssearch_engineenumβœ…-search_std/search_pro/search_pro_sogou/search_pro_quarksearch_intentboolean-falseEnable search intent recognitioncountinteger-10Result count, 1-50search_domain_filterstring--Whitelist domain filtersearch_recency_filterenum-noLimitoneDay/oneWeek/oneMonth/oneYear/noLimitcontent_sizeenum--medium/high, control content lengthrequest_idstring--Unique request identifieruser_idstring--End user ID (6-128 chars)

Search Engine Selection Guide

EngineUse Casesearch_stdBasic search, regular Q&Asearch_proAdvanced search, need more accurate resultssearch_pro_sogouSogou search, China domestic contentsearch_pro_quarkQuark search, specific scenarios

Response Structure

{ "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" } ] }

Environment Requirements

Environment variable ZHIPU_API_KEY must be configured Python 3.7+ requests library

Notes

search_query should be kept within 70 characters search_pro_sogou count must be 10/20/30/40/50 user_id length must be between 6-128 characters if provided Search intent recognition increases response time but improves result relevance

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/zhipu_search.py Scripts