← 返回 Skills 市场
yoooclaw-personal-daily
作者
vivalavida-say-hi
· GitHub ↗
· v1.0.0
· MIT-0
26
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install yoooclaw-personal-daily
功能描述
当用户需要根据自己关注的话题生成一份个性化新闻日报时使用;典型触发句子:'帮我看看今天的新闻'、'跑一下日报'、'今天有什么新鲜事'、'个性化日报'、'帮我整理今日资讯'、'新闻速递'、'今天发生了什么'、'有什么值得关注的'。
使用说明 (SKILL.md)
Personal Daily News V2
输入是用户关注的话题列表,来源为 interests.md 配置文件或定时任务 message 中携带的关注话题。
用户通过安装弹窗的「关注什么事」字段设置关注话题,如:AI 大模型、新能源汽车、创业融资、人形机器人、某个具体公司或产品。
目标是用一份日报说清:
- 今天各话题下发生了什么重要的事
- 哪些动态值得深入关注
- 整体趋势和关键信号
工作流程
- 读取关注话题配置
/Users/xinyu/.openclaw/个性化日报/interests.md;如果定时任务 message 中携带了关注话题,以 message 为准。 - 如果两处都没有关注话题,输出"关注话题尚未配置,请先在场景设置中配置",然后停止。
- 从话题列表中提取搜索关键词,整理出 5-8 组搜索词。
- 对每组关键词使用
byted-web-search执行定向搜索(中文一次 + 英文一次)。 - 严格过滤非当日新闻,丢弃旧闻、广告、软文、标题党。
- 同一事件的多条报道只保留最佳来源,不逐条堆砌。
- 按话题分组整理,输出结构化日报。
搜索规则
搜索工具
使用 byted-web-search(火山引擎联网搜索)执行所有搜索。
搜索策略
每组关键词搜 2 次(中文 + 英文),总搜索次数不超过 15 次。
搜索词构造:
- 中文:
{关键词} {M月D日},如AI大模型 5月13日、OpenAI 5月13日 - 英文:
{keyword} {Month Day, Year},如AI model May 13, 2026 - 不用"今天"、"today"、"最近"等模糊词,具体日期匹配更精准
- 首次搜索结果质量差时,换更具体的关键词重试一次
时效性筛选规则
每条搜索结果必须通过时效性检查,未通过的直接丢弃:
- 标题、摘要、URL 中含当日日期(如
2026-05-13、5月13日、May 13)→ 保留 - 摘要含时间词("今日"、"刚刚"、"今天"、"小时前"、"hours ago"、"just now")→ 保留
- 出现非当日的具体日期("5月10日"、"上周"、"last week")→ 丢弃
- 无任何时间信号 → 丢弃
相同 URL 只保留第一次出现的。
来源筛选规则
- 优先保留:国内主流媒体(新华社、澎湃、36氪、虎嗅、机器之心、量子位等)、海外权威媒体(TechCrunch、The Verge、Reuters、Bloomberg 等)、官方博客、知名科技媒体。
- 优先丢弃:软文广告、SEO 内容、标题党、营销号内容。
- 同一事件多条报道只保留信息最完整、来源最权威的一条。
- 话题下搜不到当日新闻,直接跳过该话题,不凑数。
输出要求
输出为会话文本,不生成文件。结构如下:
☀️ 个性化日报(YYYY-MM-DD)
一句话总览:用 1 句话概括今天最值得关注的动态。
今日关注:{话题1}、{话题2}、{话题3}...
---
一、{话题名称}
1. {新闻标题}
{2-3 句摘要,讲清发生了什么、为什么重要}
来源:{来源URL}
2. {新闻标题}
{2-3 句摘要}
来源:{来源URL}
---
二、{话题名称}
1. ...
---
📌 今日小结
{3-5 句话,总结今天最关键的动态,点出趋势和值得持续关注的信号}
---
💬 对哪条新闻感兴趣?告诉我,帮你深入了解。
若搜索后没有足够有效的当日新闻,必须输出:
☀️ 个性化日报(YYYY-MM-DD)
今日暂无你关注话题的重大新闻,祝今天顺利。
输出风格
- 信息密度高,适合早上快速读完。
- 语气清醒、简洁、直接。
- 每条摘要不超过 3 句话,全文控制在 1500 字以内。
- 英文来源的新闻,摘要统一用中文呈现。
- 关键数据、人名、产品名保留原文。
决策准则
- 不做流水账,优先输出能影响判断和行动的信息。
- 没有确切来源时不编造新闻或 URL。
- 同一事件有前后更新时,以最新状态为准。
- 信息稀薄时宁可输出兜底文案,不为了凑结构编造日报。
- 不搜索与用户关注话题无关的泛新闻。
安全使用建议
This skill appears safe for normal use as a personalized news briefing. Before installing, make sure the configured interest topics are not confidential, because they may be used in external web searches.
功能分析
Type: OpenClaw Skill
Name: yoooclaw-personal-daily
Version: 1.0.0
The skill is a personalized news aggregator that reads user interests from a local configuration file and performs web searches using the 'byted-web-search' tool. While it contains a hardcoded absolute file path (/Users/xinyu/.openclaw/个性化日报/interests.md) which is a non-portable coding practice, the logic is transparent and strictly aligned with the stated purpose of generating news summaries without any signs of data exfiltration or malicious intent.
能力评估
Purpose & Capability
The skill's behavior matches its stated purpose: it reads user-selected news interests, searches current news, and returns a text briefing. The noteworthy capability is use of an external web-search tool.
Instruction Scope
The workflow is scoped to the user's configured topics, limits searches to no more than 15, filters for same-day news, and explicitly says not to fabricate news or URLs.
Install Mechanism
There is no install spec and no code files, so the artifacts do not show package installation, downloaded code, or install-time execution.
Credentials
The skill sends topic-derived search queries to byted-web-search, which is expected for a news briefing but means user interests may be exposed to the search provider.
Persistence & Privilege
The skill reads a specific persistent interests file under .openclaw, which is proportionate to personalization but is not declared in registry config-path metadata.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install yoooclaw-personal-daily - 安装完成后,直接呼叫该 Skill 的名称或使用
/yoooclaw-personal-daily触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of yoooclaw-personal-daily
- Generates a personalized daily news digest based on user-selected topics.
- Integrates topic preferences from a configuration file or scheduled messages.
- Uses precise search strategies and strict filters for timeliness and source quality.
- Groups news by topic, providing concise summaries and authoritative sources.
- Outputs a clear, high-density briefing, with fallback in case no relevant news is found.
元数据
常见问题
yoooclaw-personal-daily 是什么?
当用户需要根据自己关注的话题生成一份个性化新闻日报时使用;典型触发句子:'帮我看看今天的新闻'、'跑一下日报'、'今天有什么新鲜事'、'个性化日报'、'帮我整理今日资讯'、'新闻速递'、'今天发生了什么'、'有什么值得关注的'。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 26 次。
如何安装 yoooclaw-personal-daily?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install yoooclaw-personal-daily」即可一键安装,无需额外配置。
yoooclaw-personal-daily 是免费的吗?
是的,yoooclaw-personal-daily 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
yoooclaw-personal-daily 支持哪些平台?
yoooclaw-personal-daily 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 yoooclaw-personal-daily?
由 vivalavida-say-hi(@vivalavida-say-hi)开发并维护,当前版本 v1.0.0。
推荐 Skills