Files
market/skills/web-search/skill.json
yi-ge 1a39d91249 refactor: 清理废弃字段,同步 Schema 定义
- Agent 文件:删除 downloads、rating、ratingCount、installStatus、source
- Skill 文件:删除 downloads、rating、ratingCount、installStatus、source、version
- Skill 文件:新增 files 字段,指向配置文件路径
- 字段说明:source 和 installStatus 改为运行时计算

Refs: desirecore/desirecore#field-recovery
2026-02-17 18:09:08 +08:00

44 lines
1.4 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"id": "web-search",
"name": "网络搜索",
"icon": "search",
"shortDesc": "智能网络搜索与信息聚合,快速获取准确答案",
"fullDesc": "网络搜索技能让 Agent 能够实时检索互联网信息,支持多引擎聚合、结果去重、可信度评估和结构化摘要。不只是返回链接,而是提炼出可直接使用的答案。\n\n功能特性\n- 多引擎聚合Google、Bing、DuckDuckGo 结果综合\n- 智能摘要:自动提取关键信息,生成 TL;DR\n- 可信度评估:基于域名权威性、发布日期、交叉验证打分\n- 实时热点:追踪新闻、社交媒体趋势\n- 学术搜索arXiv、Google Scholar、PubMed 专精模式",
"category": "productivity",
"tags": [
"搜索",
"信息检索",
"网页抓取",
"实时信息",
"研究辅助"
],
"latestVersion": "3.0.2",
"updatedAt": "2025-02-10",
"maintainer": {
"name": "DesireCore Official",
"verified": true
},
"riskLevel": "medium",
"requires": {
"tools": [
"http_client",
"html_parser",
"rate_limiter"
],
"connections": [
"internet",
"search_api"
]
},
"compatibleAgents": [
"translator",
"business-analyst",
"data-analyst",
"writing-coach"
],
"changelog": "v3.0.2: 新增 AI 搜索结果去重算法,减少 40% 冗余信息",
"files": {
"config": "skills/web-search/skill.json"
}
}