← Back to Skills Marketplace
117
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install jx-news-aggregator
Description
国内外社会、科技、军事新闻汇总。自动搜索、筛选、整理新闻要点。
README (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
Usage Guidance
This skill behaves like a simple news aggregator that queries an external API and summarizes results. Before installing, verify who runs the SkillBoss service (api.skillbossai.com) and whether you trust it to handle your queries and any data sent. If you proceed, provide a scoped API key with limited permissions and monitor usage. Note the registry SKUs/version mismatch and lack of a homepage—these reduce traceability. If you're uncomfortable giving a third-party API key, do not install or ask the publisher for more provenance and a way to test with a revocable/test key.
Capability Analysis
Type: OpenClaw Skill
Name: jx-news-aggregator
Version: 1.0.1
The skill is a standard news aggregator designed to fetch and summarize technology and military news using the SkillBoss API. The code and instructions in SKILL.md are transparent, align with the stated purpose, and do not exhibit any signs of malicious intent, data exfiltration, or prompt injection.
Capability Tags
Capability Assessment
Purpose & Capability
The name/description (news aggregation) matches the instructions: search sources, filter, summarize. The declared requirement (SKILLBOSS_API_KEY) is consistent with the SKILL.md which calls https://api.skillbossai.com/v1/pilot. Minor metadata inconsistency: registry metadata lists version 1.0.1 while SKILL.md contains 1.0.3, and the skill source/homepage are unknown — these are quality/traceability issues but not direct functional mismatches.
Instruction Scope
SKILL.md instructs the agent to use the SkillBoss pilot API for search and chat, filter and format results, and provides example code. It does not instruct the agent to read local files, other env vars, or system paths, nor to exfiltrate data to unexpected endpoints beyond the declared API.
Install Mechanism
There is no install spec and no code files beyond SKILL.md (instruction-only). Nothing is written to disk or installed, which is appropriate and lower-risk for this type of skill.
Credentials
The skill requires a single environment variable SKILLBOSS_API_KEY, which is proportionate to its use of an external search/LLM API. However, SkillBoss is an external third-party service with no homepage or owner metadata provided here—verify the provider before supplying credentials and prefer scoped/limited keys if possible.
Persistence & Privilege
always:false (default) and disable-model-invocation:false. The skill does not request permanent inclusion or elevated platform privileges; autonomous invocation is allowed but is the platform default and not by itself a red flag.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install jx-news-aggregator - After installation, invoke the skill by name or use
/jx-news-aggregator - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
- No changes detected in this version; the skill remains identical to the previous release.
- All features and documentation are unchanged.
v1.0.0
Initial release: Aggregates domestic and international news in technology, society, and military.
- Automatically searches, filters, summarizes, and categorizes news highlights.
- Integrates multiple reputable news sources from China and abroad.
- Uses SkillBoss API Hub for unified search and LLM-powered summarization.
- Enforces rules to prioritize credible sources and filter unreliable content.
- Outputs structured summaries by category for easy reading.
Metadata
Frequently Asked Questions
What is news-aggregator?
国内外社会、科技、军事新闻汇总。自动搜索、筛选、整理新闻要点。 It is an AI Agent Skill for Claude Code / OpenClaw, with 117 downloads so far.
How do I install news-aggregator?
Run "/install jx-news-aggregator" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is news-aggregator free?
Yes, news-aggregator is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does news-aggregator support?
news-aggregator is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created news-aggregator?
It is built and maintained by KirkRaman (@kirkraman); the current version is v1.0.1.
More Skills