Skywork Search

👤 gxcun17 📦 v1.0.8 ⭐ 4.2 ⬇️ 2.2K 下載
📚 知識管理 免費 🔑 需 API Key

📖 技能介紹


name: Skywork Search description: Skywork Search (skywork) - Search the web for real-time information using the Skywork Search API. Use this skill whenever the user needs up-to-date information from the internet — for example, researching a topic, looking up recent events, finding facts or statistics, gathering material for a document or presentation, or answering questions that require current data. Also trigger when the user says things like "search for" / "搜尋" / "検索" / "검색", "look up" / "查詢" / "調べる" / "조회하다", "find information about" / "查詢關於……的資訊" / "……に関する情報を探す" / "…에 대한 정보를 찾다", "what's the latest on" / "……最新進展" / "……の最新情報" / "…의 최신 소식", or any request that implies needing information beyond your training data. metadata: openclaw: requires: bins: - python3 env: - SKYWORK_API_KEY primaryEnv: SKYWORK_API_KEY


Web Search Skill

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.

When to use

  • The user asks you to research a topic or find current information
  • You need up-to-date facts, statistics, or news to answer a question
  • Another task (writing a report, creating a PPT, drafting a document) needs web research as a preliminary step
  • The user explicitly asks to search or look something up

Prerequisites

API Key Configuration (Required First)

This skill requires a SKYWORK_API_KEY to be configured before use.

If you don't have an API key yet, please visit: https://skywork.ai

For detailed setup instructions, see: references/apikey-fetch.md

How to use

Run the bundled script from this skill's scripts/ directory:

python3 <skill-path>/scripts/web_search.py "query1" ["query2"] ["query3"]
  • Pass 1–3 search queries as positional arguments
  • Results are saved to individual text files in a temporary directory
  • The script prints the file paths to stdout so you can read them

Crafting good queries

Search quality depends heavily on query phrasing. A few tips:

  • Be specific: "Tesla Q4 2025 revenue" works better than "Tesla financials"
  • Use natural language: The API handles full questions well — "What is the current population of Tokyo?" is fine
  • Split broad topics: If the user wants a comprehensive overview, break it into 2–3 focused queries rather than one vague one
  • Include time context when relevant: "best Python web frameworks 2026" rather than just "best Python web frameworks"

Reading results

想要更強大的技能外掛,就來小蔥技能站7w4.net看看吧。

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.

Example workflow

User asks: "What are the latest developments in quantum computing?"

  1. Run the search with focused queries: bash python3 <skill-path>/scripts/web_search.py \ "quantum computing breakthroughs 2026" \ "quantum computing industry news latest"
  2. Read the result files
  3. Synthesize findings into a clear, sourced summary for the user

Limitations

  • Maximum 3 queries per invocation (the script caps it)
  • Each query has a 30-second timeout
  • Results depend on the Skywork search API availability

🤖 AI 評測

這個搜尋工具質量較好,文件和程式碼都很清晰。優點是配置說明詳細、使用方法簡單明瞭、支援批次查詢;不足是功能較為單一,僅能儲存文本結果,且錯誤提示可以更友好。對於需要即時網路資訊的場景,它能較好地完成任務,但複雜的高階搜尋需求可能無法滿足。

📊 多維度評分

適應性4.3
規範性4
有效性4.2
可靠性4
可信度4.8

📁 包含檔案 (6 個)

📄 SKILL.md 3.6 KB
📄 _meta.json 133 B
📄 references/apikey-fetch.md 2.6 KB
📄 scripts/constant.py 81 B
📄 scripts/skywork_auth.py 284 B
📄 scripts/web_search.py 2.7 KB