Install
openclaw skills install volcengine-ark-web-searchUse when you need fresh web results through Volcengine ARK Responses API, especially for today's news, recent updates, fact checks, topic monitoring, or Chin...
openclaw skills install volcengine-ark-web-searchUse this skill when the task needs up-to-date public web information and the runtime should go through Volcengine ARK Responses API instead of the model's built-in browsing. The bundled script wraps ARK responses with the web_search tool, defaults to Chinese-friendly output, and is suitable for repeatable automation or local agent workflows.
Default markdown output is stabilized into three sections:
ARK_API_KEY.ARK_API_KEY is missing.ARK_API_KEY is set.Basic usage:
python3 scripts/ark_web_search.py "What are today's AI news headlines?"
Chinese query:
python3 scripts/ark_web_search.py "今天有什么热点新闻"
Custom model:
python3 scripts/ark_web_search.py "OpenAI latest announcements" \
--model doubao-seed-1-6-250615
Structured JSON output:
python3 scripts/ark_web_search.py "latest semiconductor policy news" \
--format json
Longer timeout with quick retries:
python3 scripts/ark_web_search.py "OpenAI latest news" \
--timeout 90 \
--retries 2
Dry run without network:
python3 scripts/ark_web_search.py "today's EV market news" \
--dry-run
scripts/ark_web_search.py.scripts/ark_web_search.py: ARK Responses API runner with web_search, dry-run support, streaming support, and source extraction.references/ark-responses-api.md: Notes on request shape, model drift, tool naming drift, and maintenance references.--model or ARK_MODEL. ARK model availability changes over time.--timeout is per attempt. Use --retries for quick retry behavior on transient failures.search_context_size with HTTP 400. This script now retries automatically without that field if the server reports it as unsupported.web_search and web_search_preview historically. This skill defaults to web_search and should only change if official docs for the target environment require it.scripts/ark_web_search.py and keep references/ark-responses-api.md in sync.