AgentSkillsCN

web-search

在网络上搜索并返回摘要结果。适用于用户提出需要最新信息、研究资料,或你记忆中缺乏事实依据的问题时的场景。

SKILL.md
--- frontmatter
name: web-search
description: Search the web and return summarized results. Use when the user asks a question that requires current information, research, or facts you don't have in memory.
metadata:
  openpanda:
    tags: ["web", "search", "information", "research"]
    permissions: ["net:http"]
    requires:
      env: ["SEARCH_API_KEY"]
    primaryEnv: SEARCH_API_KEY

Web Search

Search the web for current information and return summarized results.

Usage

Basic search:

code
search("latest AI news", maxResults=5)

Research mode (deeper):

code
search("Vercel vs Netlify pricing 2026", maxResults=10, deep=true)

Parameters

  • query (required): The search query string
  • maxResults (default: 5): Maximum number of results to return
  • deep (default: false): If true, also reads and summarizes each result page

Best Practices

  • Use specific, focused queries for better results
  • For comparisons, search each side separately then cross-validate
  • When results seem outdated, add the current year to the query
  • For technical topics, prefer official documentation sources