Daily tech digest
My personal collection of handcrafted AI agent skills — original prompting modules for code quality, knowledge exploration, and daily productivity.
npx -y skills add unix2dos/skills --skill daily-tech-digestAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Only invoke when explicitly requested via "技术热帖"、"@daily-tech-digest" or "daily digest". Do NOT auto-trigger.
SKILL.md
2.4 KB, as published. Nobody here has run it
Daily Tech Digest Skill
获取技术论坛每日热帖,生成带深度解读的 Markdown 报告。
数据源
| 源 | 类型 | 获取内容 | 状态 |
|---|---|---|---|
| GitHub | Trending | 今日热门仓库 | ✅ |
| Product Hunt | 产品发布 | 高票产品 | ✅ |
| r/programming | Hot posts | ✅ | |
| V2EX | 论坛 | 官方热帖 API | ✅ |
| linux.do | Discourse 论坛 | 热帖 (RSS) | ✅ |
| Nodeseek | VPS 论坛 | 日榜 (第三方 API) | ✅ |
使用方法
快速开始
# 获取全部源 (输出 JSON)
python3 scripts/fetch_digest.py --source all --limit 5
单独源
# V2EX 热帖
python3 scripts/fetch_digest.py --source v2ex --limit 5
# GitHub Trending
python3 scripts/fetch_digest.py --source github --limit 10
# 多个源组合
python3 scripts/fetch_digest.py --source v2ex,github,nodeseek --limit 5
参数说明
| 参数 | 说明 | 默认值 |
|---|---|---|
--source | 数据源: github, producthunt, reddit, v2ex, linuxdo, nodeseek, all | all |
--limit | 每个源获取的条数 | 5 |
Agent 执行流程
当用户说 "给我今天的技术热帖" 或类似触发词时:
-
执行脚本获取原始 JSON 数据:
python3 scripts/fetch_digest.py --source all --limit 5 -
AI 后处理:
- 将 Reddit/GitHub/ProductHunt 英文标题和简介翻译成中文
- 对每条热帖生成 1-2 句解读
-
生成并保存 Markdown:将翻译后的内容保存到
daily-tech-digest_outputs/digest_YYYY-MM-DD.md -
展示给用户:在对话中呈现完整报告
输出格式规范
Markdown 报告结构
# 📰 Daily Tech Digest
> Generated: 2026-02-08 14:00
---
## 🔥 GitHub Trending
1. [owner/repo](链接) ⭐1.2k
简介中文翻译...
---
## 🚀 Product Hunt
1. [产品名](链接) 🔺882
简介中文翻译...
---
## 💬 Reddit r/programming
1. [标题中文翻译](链接) ↑710
---
## 🌐 V2EX
1. [标题](链接) 57回复
---
## 🐧 linux.do
1. [标题](链接) 🔥
---
## 📊 Nodeseek
1. [标题](链接) 热度5498
配置
Product Hunt Token
脚本内置了默认 Token,也可通过环境变量覆盖:
export PRODUCTHUNT_TOKEN="your_token_here"