AgentSkillsCN

Web Search

网络搜索

SKILL.md

Web Search Skill

You can search the web using the web_fetch tool.

How to Search

  1. Use a search engine URL with your query:

    code
    web_fetch url="https://www.google.com/search?q=YOUR_QUERY"
    
  2. Or use DuckDuckGo for simpler results:

    code
    web_fetch url="https://html.duckduckgo.com/html/?q=YOUR_QUERY"
    

Tips

  • URL encode your search queries (spaces = %20 or +)
  • Extract relevant information from the HTML response
  • Follow links to get more detailed information
  • Always cite your sources when reporting findings

Example

To search for "best AI tools 2024":

code
web_fetch url="https://html.duckduckgo.com/html/?q=best+AI+tools+2024"