← 返回 Skills 市场
jamesmenews

AI News Pro

作者 AIMPACT · GitHub ↗ · v0.9.1 · MIT-0
cross-platform ✓ 安全检测通过
88
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install ai-news-pro
功能描述
AI News Pro 提供 AI 领域早报、晚报、热点新闻和精选内容,基于 AI 评分智能排序,支持定时推送。当用户说"查询 AI 早报"、"查询 AI 晚报"、"查询 24H 热点新闻榜"或"查询 AI 精选内容"时调用。
使用说明 (SKILL.md)

AI News Pro - AI 资讯助手

提供 AI 领域早报、晚报、热点新闻和精选内容,基于 AI 评分智能排序后推送。

何时调用此技能

当用户说以下任一指令时,自动调用此技能:

  • "查询 AI 早报"
  • "查询 AI 晚报"
  • "查询 24H 热点新闻榜"
  • "查询 AI 精选内容"
  • "生成 AI 日报"

安装后提示

✅ 安装成功!你可以通过以下方式获取 AI 资讯:

  • 📰 查询 AI 早报 - 每日上午精选(前一天 00:00 - 当天 12:00)
  • 🌙 查询 AI 晚报 - 每日晚间总结(当天 12:00 - 24:00)
  • 🔥 查询 24H 热点新闻榜 - 最近 24 小时影响力最高内容
  • 🤖 查询 AI 精选内容 - AI 领域高质量资讯

你也可以直接说:"帮我查询 AI 早报"

功能

  • 提供 AI 领域早报、晚报、热点新闻榜
  • 基于 AI 评分智能排序,优先展示高价值内容
  • 按分类整理(大模型/Agent/融资/安全/应用/开源)
  • 可选推送:基于 OpenClaw 已配置的 message 工具与渠道凭据,提供已配置渠道的推送能力
  • 去重:默认基于当前批次结果去重(标题或 ID)

使用方式

快捷指令(推荐)

告诉你的 AI 助手以下任一指令:

  • "查询 AI 早报"

    • 获取每日上午精选内容(前一天 00:00 - 当天 12:00,最多 10 条)
  • "查询 AI 晚报"

    • 获取每日晚间总结(当天 12:00 - 24:00,最多 10 条)
  • "查询 24H 热点新闻榜"

    • 获取最近 24 小时影响力最高内容(按 AI 评分降序,最多 10 条)
  • "查询 AI 精选内容"

    • 获取 AI 领域高质量资讯(最近 24 小时,最多 10 条)

定时推送(可选)

在 OpenClaw 外部配置 cron 任务:

前提说明:

  • 本技能不内置、不存储任何渠道凭据。
  • 如需推送,需在 OpenClaw 中预先配置 message 工具及渠道凭据。
  • 若未配置 message 或渠道凭据,则仅输出报告,不执行推送。

推荐时间:

  • 早报: 每日 12:00
  • 晚报: 每日 22:00
  • 热点: 每日 18:00

示例配置:

# Linux/macOS crontab
0 12 * * * openclaw agent --message "查询 AI 早报"
0 18 * * * openclaw agent --message "查询 24H 热点新闻榜"
0 22 * * * openclaw agent --message "查询 AI 晚报"

Windows 任务计划程序:

# 创建每日 12:00 早报任务
schtasks /create /tn "AI-News-Pro早报" /tr "openclaw agent --message '查询 AI 早报'" /sc daily /st 12:00

🎯 数据源配置

当前启用信源

URL 类型 说明
MetaEra AI 快讯 https://agent.me.news/skill/flash/list?page=1&size=20&category=ai API AI 分类快讯流
AI 新闻 API https://agent.me.news/skill/aimpact/articles?page=1&size=20&category=ai API AI 新闻列表
OpenClaw 新闻 API https://agent.me.news/skill/aimpact/articles?page=1&size=20&category=openclaw API OpenClaw 新闻列表
AI 行业大事件 API https://agent.me.news/skill/aimpact/events API AI 行业大事件

信源策略:

  • 当前仅使用 ME News API 信源
  • 所有可用信源以 sources.md 为准
  • 新增信源时统一维护到 sources.md

分类体系

  • 🧠 大模型 — 新模型发布、基准表现、技术进展
  • 🤖 Agent — AI 代理、自动化流程、工具调用
  • 💰 融资/商业 — 融资进展、并购动态、商业合作
  • 🛡️ 安全/治理 — AI 安全、监管政策、伦理议题
  • 🔧 应用/产品 — 产品发布、功能更新、落地实践
  • 🔓 开源 — 开源模型、工具链、框架生态

配置

可在你的 TOOLS.md 中添加:

### AI News Pro
- 早报推送:12:00 (Asia/Shanghai)
- 晚报推送:22:00 (Asia/Shanghai)
- 热点推送:18:00 (Asia/Shanghai)
- 推送渠道:feishu(或 telegram/discord)
- 内容数量:最多 10 条/次
- 排序规则:按 AI 评分降序

采集流程

  1. 读取配置:执行前先读取 sources.md,确认本次采集数据源清单
  2. 调用 API(优先 curlweb_fetch 兜底):按 sources.md 配置,优先使用 curl 调用 AI 数据源 API
    • AI 新闻 API(curl
    • OpenClaw 新闻 API(curl
    • AI 行业大事件 API(curl
    • MetaEra AI 快讯(curl
    • 仅当 curl 不可用或请求失败时,才使用 web_fetch 对同一 URL 兜底重试(遵循下方“API 抓取规则(强约束)”)
  3. 提取字段:从 API 响应提取标题、摘要、链接、发布时间、AI 评分
  4. 时间过滤:根据查询类型过滤时间范围
    • 早报:前一天 00:00 - 当天 12:00
    • 晚报:当天 12:00 - 24:00
    • 热点:最近 24 小时
  5. 去重过滤:基于本次采集结果去重(按标题或 ID)
  6. 智能排序:按 AI 评分降序排序(如 API 提供)
  7. 分类标注:根据内容关键词补充分类标签(大模型/Agent/融资等)
  8. 筛选数量:选出 Top 10 条
  9. 格式化输出:严格按 format.md 格式化生成报告
  10. 推送分发:通过 message 工具推送到指定渠道(可选)

API 抓取规则(强约束)

  • sources.md 中所有 URL 均为 API endpoint,必须优先使用 curl 获取数据。
  • 仅当 curl 不可用或请求失败时,才允许使用 web_fetch 对同一 URL 兜底重试。
  • 仅允许请求 sources.md 白名单 URL,禁止改走公开网页搜索替代。
  • 失败时需返回 HTTP 状态码与错误摘要,不得直接改走公开网页搜索替代。

注意事项

  • 建议优先使用 curl 调用 API endpoint
  • web_fetch 仅作为兜底手段(curl 不可用或失败时)
  • 执行前必须读取 sources.md,并严格按其配置进行采集
  • 所有内容基于 AI 评分智能排序,优先展示高价值资讯
  • 输出格式以 format.md 为唯一标准,不得自行变更结构
  • 首次使用建议先手动触发,确认输出格式与推送渠道
  • 本技能不负责管理任何第三方渠道密钥,也不要求写入本地持久化存储
安全使用建议
This skill is internally consistent with a news aggregator: it will perform network requests to the listed API endpoints (agent.me.news) and can optionally push formatted reports via whatever messaging channels you've configured in OpenClaw. Before installing, verify that you trust the agent.me.news domain and its APIs; confirm that your OpenClaw 'message' tool and channels are configured with only the permissions you intend (so push messages can't leak sensitive channels); and consider running a manual sample invocation first to inspect output and ensure the formatting and sources behave as expected. If you need stronger safety, restrict allowed target domains or audit network activity from the agent.
功能分析
Type: OpenClaw Skill Name: ai-news-pro Version: 0.9.1 The skill is a standard news aggregator designed to fetch and format AI-related updates from specific API endpoints hosted on agent.me.news. It uses curl and web_fetch for data retrieval and follows a well-defined output structure in format.md. There is no evidence of data exfiltration, unauthorized command execution, or malicious prompt injection; the instructions are strictly aligned with the stated purpose of providing news reports.
能力评估
Purpose & Capability
Name/description (AI news, morning/evening reports, hot list, curated content) match the declared requirements: only 'curl' is required and the skill reads sources.md and calls the listed API endpoints. No unrelated credentials, binaries, or install steps are requested.
Instruction Scope
The SKILL.md explicitly instructs the agent to read sources.md and to use curl (web_fetch only as fallback) to call the listed API endpoints, extract fields, de-duplicate, sort, format per format.md, and optionally push via the platform 'message' tool. This is coherent for a news skill, but it will perform network requests to the listed external host (agent.me.news) whenever invoked; you should verify the trustworthiness of those endpoints if that matters.
Install Mechanism
No install spec and no code files — instruction-only. This is the lowest-risk install profile and consistent with the described functionality.
Credentials
The skill requires no environment variables, credentials, or config paths. It optionally uses the platform 'message' tool/channels if already configured by the user; requiring preconfigured messaging channels (outside the skill) is reasonable for push functionality.
Persistence & Privilege
always is false and the skill is user-invocable; it does not request permanent presence or modify other skills' configurations. It does not attempt to persist credentials or write system-wide settings according to SKILL.md.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install ai-news-pro
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /ai-news-pro 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.9.1
Version 0.9.1 - 增加版本号标注到 SKILL.md。 - 明确要求依赖 curl(二进制)而非 exec 工具。 - 推送能力调整为“可选”:仅在 OpenClaw 已配置 message 工具和渠道凭据时才支持推送,技能自身不存储任何推送渠道密钥。 - 去重机制由“历史采集去重”修改为“本次结果去重”,进一步简化实现和避免持久化依赖。 - 明确技能不负责本地持久化或第三方渠道密钥管理,强化无状态理念。
v0.9.0
AI News Pro 0.9.0 - 首次对外发布,聚焦 AI 领域早报、晚报、热点新闻榜与精选内容推送 - 支持用户通过多种关键词快捷查询(如"查询 AI 早报"/"24H 热点新闻榜"等) - 引入基于 AI 评分的内容智能排序,优先展示高价值资讯 - 提供按分类整理(大模型/Agent/融资/安全/应用/开源)与去重、增量更新 - 灵活支持定时推送(如飞书、Telegram、Discord),支持外部定时任务配置 - 明确采集流程与API抓取规则,优先用curl,仅允许sources.md白名单 API
元数据
Slug ai-news-pro
版本 0.9.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

AI News Pro 是什么?

AI News Pro 提供 AI 领域早报、晚报、热点新闻和精选内容,基于 AI 评分智能排序,支持定时推送。当用户说"查询 AI 早报"、"查询 AI 晚报"、"查询 24H 热点新闻榜"或"查询 AI 精选内容"时调用。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 88 次。

如何安装 AI News Pro?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install ai-news-pro」即可一键安装,无需额外配置。

AI News Pro 是免费的吗?

是的,AI News Pro 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

AI News Pro 支持哪些平台?

AI News Pro 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 AI News Pro?

由 AIMPACT(@jamesmenews)开发并维护,当前版本 v0.9.1。

💬 留言讨论