Install
openclaw skills install @mingzeng21/deepseek-web-searchUse when you need up-to-date information, current events, or answers beyond your knowledge cutoff and want a synthesized answer with source URLs rather than a raw result list. Server-side web search via DeepSeek's built-in web_search tool (handles Chinese and English web). Not for structured result lists.
openclaw skills install @mingzeng21/deepseek-web-searchSearches the web server-side via DeepSeek's Responses API web_search tool and returns a synthesized answer with the source URLs the model consulted.
Run the bundled script from this skill's directory (where this SKILL.md lives):
node ./search.mjs "<query>" [maxOutputTokens]
query (required): The search query or question.maxOutputTokens (optional): Cap on answer length (default 2000).Returns a JSON object:
{
"answer": "Synthesized answer text",
"sources": ["https://page-the-model-opened.example", "..."],
"query": "original query",
"model": "deepseek-v4-flash",
"usage": { "input_tokens": 0, "output_tokens": 0, "total_tokens": 0 },
"engine": "deepseek-web-search"
}
config.json (next to search.mjs) or the DEEPSEEK_API_KEY env var. If both are missing, the script reports an error.sources are the URLs the model opened while researching — a "pages consulted" list, not per-claim citations. Treat the answer as model synthesis; verify critical facts against the sources before trusting them.