← 返回 Skills 市场
85
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install godfery-news-aggregator
功能描述
国内外社会、科技、军事新闻汇总。自动搜索、筛选、整理新闻要点。
使用说明 (SKILL.md)
News Aggregator
聚合国内外社会、科技、军事新闻,自动筛选要点。
新闻源
国内科技
- 36氪 (https://36kr.com/information/tech/)
- 机器之心 (https://www.jiqizhixin.com/)
- 量子位 (https://www.1baijia.com/)
- IT之家 (https://www.ithome.com/)
国内军事
- 观察者网 (https://www.guancha.cn/)
- 澎湃新闻 (https://www.thepaper.cn/)
- 腾讯军事 (https://new.qq.com/om/mil/)
国际科技
- TechCrunch
- The Verge
- Wired
- Ars Technica
国际军事
- Defense News
- Jane's Defence
- Military Times
工作流
- 搜索 - 通过 SkillBoss API Hub
/v1/pilot(type: search)搜索各源 - 筛选 - 过滤重复、过期、不可靠来源
- 整理 - 按类别整理,每条含标题、来源、要点
- 输出 - 生成结构化汇总
API 调用
使用 SkillBoss API Hub 统一搜索接口(替代 Tavily、Serper 等第三方搜索服务):
import requests, os
SKILLBOSS_API_KEY = os.environ["SKILLBOSS_API_KEY"]
API_BASE = "https://api.skillbossai.com/v1"
def pilot(body: dict) -> dict:
r = requests.post(
f"{API_BASE}/pilot",
headers={"Authorization": f"Bearer {SKILLBOSS_API_KEY}", "Content-Type": "application/json"},
json=body,
timeout=60,
)
return r.json()
# 搜索新闻
result = pilot({"type": "search", "inputs": {"query": "最新科技新闻"}, "prefer": "balanced"})
search_results = result["result"]
# 用 LLM 整理新闻要点
result = pilot({
"type": "chat",
"inputs": {
"messages": [
{"role": "user", "content": f"请从以下搜索结果中整理新闻要点:\
{search_results}"}
]
},
"prefer": "balanced"
})
summary = result["result"]["choices"][0]["message"]["content"]
可信度规则
优先:
- 官方媒体报道
- 权威机构发布
谨慎:
- 论坛帖子
- 匿名消息
- 二手转载
输出格式
## 科技新闻
1. [标题](链接)
来源:xxx | 时间:xxx
要点:xxx
## 军事新闻
1. [标题](链接)
来源:xxx | 时间:xxx
要点:xxx
安全使用建议
This skill appears internally consistent, but before installing: (1) Verify you trust the SkillBoss API provider (https://api.skillbossai.com) and its privacy/terms, since all search results and summaries are sent there. (2) Give SKILLBOSS_API_KEY least-privilege scope and use a dedicated, rotatable key. (3) Be aware the agent (if allowed to run autonomously) can call the API using that key — monitor usage and set rate limits/alerts. (4) If you need stronger privacy, avoid sending sensitive or proprietary content into the aggregator's prompts or choose an on-premise/local alternative.
功能分析
Type: OpenClaw Skill
Name: godfery-news-aggregator
Version: 1.0.0
The skill is a standard news aggregator designed to fetch and summarize technology and military news using the SkillBoss API Hub. The code and instructions in SKILL.md are consistent with the stated purpose, utilizing a legitimate API workflow for searching and processing information without any signs of data exfiltration, malicious execution, or harmful prompt injection.
能力标签
能力评估
Purpose & Capability
The skill is a news aggregator and only requires SKILLBOSS_API_KEY to call the SkillBoss API for search/chat operations. There are no unrelated binaries, config paths, or extra credentials requested, so the required environment access is proportional to the claimed purpose.
Instruction Scope
SKILL.md instructs making HTTP calls to SkillBoss /v1/pilot for search and chat, then filtering and formatting results. It does not instruct reading arbitrary system files, other environment variables, or posting data to unknown endpoints. The sample code embeds the declared environment variable and uses search results as LLM input — expected for summarization.
Install Mechanism
This is an instruction-only skill with no install spec and no code files. That minimizes on-disk persistence and installation risk.
Credentials
Only SKILLBOSS_API_KEY is required, which is appropriate for a skill that proxies searches and LLM summarization through the SkillBoss API. No extra tokens, keys, or passwords are requested.
Persistence & Privilege
The skill is not marked always:true and has no install. It can be invoked autonomously (platform default), which is normal — but note that if the agent runs autonomously it could call external APIs using the provided SKILLBOSS_API_KEY without further user prompts. Consider trust in SkillBoss and the key's scope.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install godfery-news-aggregator - 安装完成后,直接呼叫该 Skill 的名称或使用
/godfery-news-aggregator触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
News Aggregator 1.0.3 introduces structured multi-source aggregation with a focus on reliability.
- Aggregates domestic and international news in technology, military, and society sectors.
- Defines trusted news sources for each category.
- Implements a workflow for searching, filtering, organizing, and summarizing news.
- Uses the SkillBoss API Hub for unified news retrieval (replacing third-party search services).
- Applies credibility guidelines to prioritize reliable information.
- Provides a clear output format for easy reading.
元数据
常见问题
news-aggregator 是什么?
国内外社会、科技、军事新闻汇总。自动搜索、筛选、整理新闻要点。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 85 次。
如何安装 news-aggregator?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install godfery-news-aggregator」即可一键安装,无需额外配置。
news-aggregator 是免费的吗?
是的,news-aggregator 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
news-aggregator 支持哪些平台?
news-aggregator 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 news-aggregator?
由 KirkRaman(@kirkraman)开发并维护,当前版本 v1.0.0。
推荐 Skills