Install
openclaw skills install coze-web-searchSearch the web using coze-coding-dev-sdk. Supports web search, image search, AI summaries, time filters, and site restrictions.
openclaw skills install coze-web-searchSearch the web using coze-coding-dev-sdk. Returns structured results with URLs, snippets, and AI summaries.
npx ts-node {baseDir}/scripts/search.ts -q "Python programming"
npx ts-node {baseDir}/scripts/search.ts \
-q "AI news" \
--time-range 1w \
--count 15
npx ts-node {baseDir}/scripts/search.ts \
-q "Python tutorials" \
--sites "python.org,github.com,stackoverflow.com"
npx ts-node {baseDir}/scripts/search.ts \
-q "mountain landscape" \
--type image \
--count 20
npx ts-node {baseDir}/scripts/search.ts \
-q "machine learning" \
--format markdown
| Option | Description |
|---|---|
-q, --query <text> | Search query (required) |
--type <type> | web or image (default: web) |
--count <n> | Number of results (default: 10) |
--time-range <range> | 1d, 1w, 1m (web only) |
--sites <domains> | Comma-separated domains to include |
--block-hosts <domains> | Comma-separated domains to exclude |
--no-summary | Disable AI summary |
--need-content | Include full page content |
--format <fmt> | json, text, markdown (default: text) |
| Value | Description |
|---|---|
1d | Last 24 hours |
1w | Last week |
1m | Last month |
============================================================
AI SUMMARY
============================================================
Python is a high-level programming language...
============================================================
SEARCH RESULTS (10 items)
============================================================
[1] Python.org
URL: https://www.python.org
Source: Python Software Foundation
The official home of the Python Programming Language...
Formatted with headers, links, and collapsible content sections.
Raw API response.
--time-range for recent content--sites to limit to trusted sources--need-content sparingly (increases response size)