Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
eze-is avatar

Daily News

  • 24 installs
  • 71 repo stars
  • Updated April 11, 2026
  • eze-is/eze-skills

Helps with ai & agent building tasks.

About

daily-news is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.

  • daily-news
  • AI & Agent Building
  • AI-coding skill

Daily News by the numbers

  • 24 all-time installs (skills.sh)
  • Ranked #9,876 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Jul 13, 2026 (Skillselion catalog sync)
npx skills add https://github.com/eze-is/eze-skills --skill daily-news

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs24
repo stars71
Last updatedApril 11, 2026
Repositoryeze-is/eze-skills

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

Daily News

三阶段工作流:获取元数据生成摘要输出日报

工作目录

首次运行询问工作目录路径(如 ~/daily-news),后续记住。

<workspace>/
├── profile.yaml          # 用户画像(关于我、关注什么)
├── settings.yaml         # 日报设置(语言、格式偏好)
├── methods/              # 信源获取方法
├── data/news.db          # SQLite 数据库
└── output/YYYY-MM-DD.md  # 日报输出

初始化:

mkdir -p <workspace>/methods <workspace>/data <workspace>/output
cp references/examples/settings.example.yaml <workspace>/settings.yaml
cp references/examples/profile.example.yaml <workspace>/profile.yaml
python3 scripts/db.py init --db <workspace>/data/news.db

初始化完成后将工作目录写入 ~/.claude/CLAUDE.md

- daily-news skill 的项目目录在:<workspace>

---

阶段 1:获取元数据

遍历 <workspace>/methods/ 目录,对每个 method 文件执行抓取。

增量抓取:每个信源独立追踪 last_fetched_date,存在 method YAML 和 DB 两处。默认增量模式;首次抓取时询问用户日期范围。

python3 scripts/db.py source-status --db <db> --source <source_id>

去重:三层保护——抓取时按 since 过滤 → check-existing 入库前预检 → DB UNIQUE 约束兜底。

Method 执行

# extends: rss
python3 references/methods/rss.py --url "<source_url>"

# extends: webfetch-smart 或 browser-smart
# 遵循 web-access skill 进行联网操作

# 无 extends:*.py 直接执行,*.md 按内容操作

入库:

python3 scripts/db.py add-items-incremental \
  --db <db> --source <source_id> --items '<json>' --since "YYYY-MM-DD"

---

阶段 2:生成摘要

python3 scripts/db.py list-pending --db <workspace>/data/news.db

对每条内容,按 method 的 detail_method 字段获取正文(遵循 web-access skill),按 references/prompts/summary.md 生成摘要:

python3 scripts/db.py update-summary --db <db> --id <item_id> --data '<摘要JSON>'

---

阶段 3:生成日报

python3 scripts/db.py list-today --db <workspace>/data/news.db

读取 profile.yaml,按 references/prompts/report.md 生成日报,输出到 output/YYYY-MM-DD.md

---

用户画像

profile.yaml 格式:

about: |
  (关于我:身份、工作)

focus: |
  (当前关注:最近在意的话题)

low_priority: |
  (不太关心:降低优先级的内容)

---

添加信源

按优先级依次尝试:

1. 检查 RSS — 尝试 /feed/rss/atom.xml,或页面 <link rel="alternate">,有则用 extends: rss 2. WebFetch 或浏览器 — 遵循 web-access skill,可达用 extends: webfetch-smart,否则 extends: browser-smart

创建 method 文件详见 references/schemas/method.md

---

参考资料

资料路径加载时机
Method 规范references/schemas/method.md添加信源时
摘要提示词references/prompts/summary.md阶段 2
日报提示词references/prompts/report.md阶段 3
RSS 方法references/methods/rss.py阶段 1(extends: rss
Method 元数据示例references/examples/method-with-metadata.example.yaml添加信源 / 配置增量追踪时
网站部署references/website-deployment.md用户请求部署时

依赖

pip install pyyaml feedparser requests beautifulsoup4

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.