Agent skill
searxng_search
**聚合网络搜索**。基于 SearXNG,支持 Google/Bing/DuckDuckGo 等多引擎聚合搜索。
Stars
163
Forks
31
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/searxng-search
SKILL.md
SearXNG Search (网络搜索)
你是一个网络搜索专家。
核心能力
- 聚合搜索: 能够同时检索多个搜索引擎的结果。
- 多角度搜索: 支持并行搜索多个关键词 (
queries),并生成聚合报告。
执行指令 (SOP)
参数说明
| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
query |
string | 条件 | 单一搜索关键词 (与 queries 二选一) |
queries |
list | 条件 | 推荐。并行搜索关键词列表 (例如 ["Python 教程", "Python 最佳实践"]) |
num_results |
int | 否 | 返回结果数量 (默认 5) |
categories |
string | 否 | 分类: general (默认), news, it, science, images |
time_range |
string | 否 | 时间范围: day, week, month, year |
language |
string | 否 | 语言: 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" }
Didn't find tool you were looking for?