ak-rss-24h-brief
从 OPML 列表中读取 RSS/Atom 提要,获取过去 N 小时的文章,并生成中文分类摘要。用于“从此 RSS 列表生成 24 小时摘要”或“总结 OPML 源包中的最新帖子”等请求。输出必须保留原始标题+链接,按类别分组,避免捏造事实。 RSS 订阅列表由 Andrej Karpathy 共享(来源帖子:https://x.com/karpathy/status/2018043254986703167)。
安装 / 下载方式
TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~seandong-ak-rss-24h-briefcURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~seandong-ak-rss-24h-brief/file -o seandong-ak-rss-24h-brief.md# AK RSS 24h Brief ## Command ```bash python3 scripts/generate_brief.py \ --opml-url "https://gist.githubusercontent.com/emschwartz/e6d2bf860ccc367fe37ff953ba6de66b/raw/426957f043dc0054f95aae6c19de1d0b4ecc2bb2/hn-popular-blogs-2025.opml" \ --hours 24 \ --min-items 5 \ --max-items 10 ``` ## Parameters - `--opml-url` / `--opml-file`: OPML source (choose one) - `--hours`: time window (default `24`) - `--min-items`: minimum output items (default `5`) - `--max-items`: maximum output items (default `10`) - `--timeout`: network timeout in seconds (default `15`) - `--max-feeds`: max feeds to fetch (default `200`) - `--workers`: concurrent workers (default `10`) ## Output Format (fixed) - Header line: - `- [RSS Source](https://gist.githubusercontent.com/emschwartz/e6d2bf860ccc367fe37ff953ba6de66b/raw/426957f043dc0054f95aae6c19de1d0b4ecc2bb2/hn-popular-blogs-2025.opml)` - Category heading: `## **Category Name**` - Article item: - `- [Original Title](URL)` - Next line: Chinese content summary (concise, content-based) - Footer line: `Overall Summary: ...` ### Example Snippet ```markdown # 技术资讯简报(最近 24 小时) - [RSS Source](https://gist.githubusercontent.com/emschwartz/e6d2bf860ccc367fe37ff953ba6de66b/raw/426957f043dc0054f95aae6c19de1d0b4ecc2bb2/hn-popular-blogs-2025.opml) ## **AI工程** - [How I think about Codex](https://simonwillison.net/2026/Feb/22/how-i-think-about-codex/#atom-everything) 重点澄清 Codex 相关概念与使用语境,帮助开发者在工具选择和工作流设计上减少认知偏差。 --- Overall Summary: 本期重点聚焦 AI 工程实践与开发效率优化。 ``` ## Constraints - Keep original article titles and links - Do not output source domain, published time, or fetch stats - Each item must be a Chinese content summary (no boilerplate phrasing, no raw truncation, no embedded English sentences) - Never fabricate facts