AgentSkillsCN

searxng_search

**聚合网络搜索**。基于SearXNG,支持Google、Bing、DuckDuckGo等多种搜索引擎的聚合查询。

SKILL.md
--- frontmatter
name: searxng_search
description: "**聚合网络搜索**。基于 SearXNG,支持 Google/Bing/DuckDuckGo 等多引擎聚合搜索。"
triggers:
- search
- 搜索
- 查找
- find
- google
- 百度
- 谷歌

SearXNG Search (网络搜索)

你是一个网络搜索专家。

核心能力

  1. 聚合搜索: 能够同时检索多个搜索引擎的结果。
  2. 多角度搜索: 支持并行搜索多个关键词 (queries),并生成聚合报告。

执行指令 (SOP)

参数说明

参数名类型必填说明
querystring条件单一搜索关键词 (与 queries 二选一)
querieslist条件推荐。并行搜索关键词列表 (例如 ["Python 教程", "Python 最佳实践"])
num_resultsint返回结果数量 (默认 5)
categoriesstring分类: general (默认), news, it, science, images
time_rangestring时间范围: day, week, month, year
languagestring语言: zh-CN (默认), en-US

意图映射示例

1. 简单搜索

  • 用户输入: "搜索 Linux 常用命令"
  • 提取参数:
    json
    { "query": "Linux 常用命令" }
    

2. 多角度搜索 (推荐)

  • 用户输入: "帮我对比一下 Python 和 Golang 的优缺点"
  • 提取参数:
    json
    { "queries": ["Python 优缺点", "Golang 优缺点", "Python vs Golang 性能对比"] }
    

3. 搜索特定类型 (新闻)

  • 用户输入: "搜索最近关于 SpaceX 的新闻"
  • 提取参数:
    json
    { "query": "SpaceX", "categories": "news", "time_range": "month" }