ai-daily-digest
Generate and publish a daily AI-vendor news card digest. Fetches the latest Anthropic (and later OpenAI, etc.) official announcements, curates them into…
专题深度线——对一个值得深挖的功能点(如 Claude Tag)生成深度文章草稿。从内参索引列「值得深挖」候选→用户选→抓官方素材生成五段骨架 draft→交 article-harness 打磨。用户说「深挖 X / 做个 X 的专题 / 专题深度」时使用。
$ npx -y skills add yinjialu/ai-frontier-daily --skill firsthand-deepdive --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/firsthand-deepdiveContext preview
The summary Claude sees to decide when to auto-load this skill.
专题深度线——对一个值得深挖的功能点(如 Claude Tag)生成深度文章草稿。从内参索引列「值得深挖」候选→用户选→抓官方素材生成五段骨架 draft→交 article-harness 打磨。用户说「深挖 X / 做个 X 的专题 / 专题深度」时使用。
name: firsthand-deepdive description: 专题深度线——对一个值得深挖的功能点(如 Claude Tag)生成深度文章草稿。从内参索引列「值得深挖」候选→用户选→抓官方素材生成五段骨架 draft→交 article-harness 打磨。用户说「深挖 X / 做个 X 的专题 / 专题深度」时使用。
内参的第三条内容线:把官方一手的重要功能点(模型发布/重大功能)做成面向普通用户的深度文章。
python3 -c "import json,datetime; from scripts.firsthand.query import load_index; from scripts.firsthand.deepdive import candidates; \
today=datetime.datetime.now(datetime.timezone(datetime.timedelta(hours=8))).date().isoformat(); \
[print(i+1, '|', g[0]['title'], '|', ', '.join(a['source'] for a in g)) for i,g in enumerate(candidates(load_index('data/firsthand'), 7, today))]"把候选清单(每个 = 一个事件,可能多源)报给用户,**用户选一个**。 也可用户直接指定(不在索引里时,手工构造 cluster:每篇 `{title, source, resource, summary, detected}`)。
判断该功能**当前能否体验**(如 Claude Tag 暂不可体验 → `feature_available=False`):
python3 -c "from scripts.firsthand.query import load_index; from scripts.firsthand.deepdive import candidates, write_draft; \
import datetime; today=datetime.datetime.now(datetime.timezone(datetime.timedelta(hours=8))).date().isoformat(); \
cands=candidates(load_index('data/firsthand'), 7, today); \
p=write_draft('content', cands[<选中序号-1>], today, feature_available=False); print('draft:', p)"产出 `content/deepdive/<date>_<slug>/draft.md`:五段骨架 + frontmatter sources(官方 URL)+ 官方原文素材。
article-harness 已适配多宿主,同一个 Writer/Reviewer 协议按当前 Agent 环境选择执行方式:
**Codex 内使用时**(优先):
**Claude Code 内使用时**(暂时保持原链路不变):
bash ~/.claude/skills/article-harness/harness.sh content/deepdive/<date>_<slug>/draft.md
Writer 整理润色 ↔ Reviewer 迭代,PASS 后自动进入步骤4。
harness PASS 后,立即用 `wechat-official-draft` skill 将 `<draft_dir>/.harness-workspace/finished.md` 推送到微信公众号草稿箱,**无需用户介入**。
用户在微信草稿箱完成最终验收。
草稿推送成功后,**立即询问用户**:"草稿已推送,有没有想沉淀的审稿反馈?" 用户说完后,将可泛化的反馈条目追加写入 `~/Documents/context-harness-data/article-harness/reviewer.md`,并告知已写入。 没有反馈则跳过。
服务器主流程:Hermes 定时巡检 → 官方原文核验与中文策展 → 飞书通知 → 小红书/公众号卡片 ZIP。见 服务器部署 与 官方信源校准。 以下保留原 GitHub Pages / 本机流程作为兼容参考。 抓取 AI 大厂官方动态(Anthropic + OpenAI,可继续扩展)→ 中文策展 → 渲染小红书 / 公众号卡片 → GitHub Pages 可视化展示页 → Codex Automation 每天自动更新。 整条流程封装为可安装的 Agent
Repo: yinjialu/ai-frontier-daily
Generate and publish a daily AI-vendor news card digest. Fetches the latest Anthropic (and later OpenAI, etc.) official announcements, curates them into…
把专题深度成稿转换为小红书图文卡(封面+知识卡 1080×1440)+ 笔记文案,复用本仓渲染/发布栈。触发词「发小红书 / 转小红书图文 / 深度内容小红书」。
查询一手信源内参库「最近有什么新动态」。读 ai-frontier-daily 的 OKF 内参库(data/firsthand/),按时间窗汇总 AI 大厂官方最新动态。用户问「最近有什么新动态 / 内参最近有啥 / Anthropic/OpenAI 最近发了什么 / 这周 AI 大厂动态」时使用。
维护 ai-frontier-daily 的一手信源清单 firsthand-sources.yaml。新增信源(探测订阅方式并写入)、列出信源健康状态。用户说"帮我监控这个网页 / 加个信源 / 看看信源健康度"时使用。
一手信源订阅适配器。给定信源 URL,探测最稳的订阅方式(RSS / HTML 链接提取),返回统一的文章列表 [{url,title}]。用于 ai-frontier-daily 内参监控的新增信源探测与抓取。