This is a straightforward web search integration that hooks Claude up to the Skywork search API for pulling in real-time information. You can run up to three queries at once, and it dumps structured results with URLs and snippets into text files you read back. The documentation is solid on query crafting tips, like being specific and splitting broad topics into focused searches. You'll need to grab a Skywork API key first, which is the usual friction point. Honestly, the value here depends entirely on how current Skywork's index is and whether the API stays responsive. Good fit if you're building research workflows or need to supplement Claude's training data with fresh facts.
npx -y skills add skyworkai/skywork-skills --skill "Skywork Search" --agent claude-codeInstalls into .claude/skills of the current project.
Search the web for real-time information via the Skywork search API. This skill lets you run up to 3 queries in a single invocation and returns structured results with source URLs and content snippets.
This skill requires a SKYWORK_API_KEY to be configured in OpenClaw.
If you don't have an API key yet, please visit: https://skywork.ai
For detailed setup instructions, see: references/apikey-fetch.md
Run the bundled script from this skill's scripts/ directory:
python3 <skill-path>/scripts/web_search.py "query1" ["query2"] ["query3"]
Search quality depends heavily on query phrasing. A few tips:
After running the script, read the output files. Each file contains:
query: <the original query>
[result-1] <source URL>
<content snippet>
[result-2] <source URL>
<content snippet>
...
Synthesize the results into a clear answer for the user. Always cite sources when presenting factual information — include the URLs from the results so the user can verify.
User asks: "What are the latest developments in quantum computing?"
python3 <skill-path>/scripts/web_search.py \
"quantum computing breakthroughs 2026" \
"quantum computing industry news latest"
juliusbrussee/caveman
mattpocock/skills
shadcn/improve
obra/superpowers
forrestchang/andrej-karpathy-skills
vercel-labs/skills