ai-daily — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited ai-daily (Plugin) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
AI 资讯日报 Claude Code Skill - 每天自动获取、分析、归类 AI 前沿资讯
[!CAUTION]
$\color{#FF0000}{想每天咖啡时间就帮你找到好的选题,自动发给你吗? 有需要定制的朋友拉到底部通过公众号联系到我。}$
AI Daily 是一个 Claude Code Skill,帮助你在 Claude Code 中快速获取 AI 行业资讯。它从 smol.ai 获取资讯,使用内置的 Claude AI 能力进行智能分析和分类,生成结构化的 Markdown 文档,并可按需生成精美的网页。
在 Claude Code 中运行:
/plugin marketplace add geekjourneyx/ai-daily-skill
/plugin install ai-daily@geekjourneyx-ai-daily-skill克隆项目后,Skill 自动可用:
git clone https://github.com/geekjourneyx/ai-daily-skill.git
cd ai-daily-skill在 Claude Code 中直接使用即可。
cp -r plugins/ai-daily ~/.claude/skills/# 昨天的 AI 资讯
昨天AI资讯
# 前天的 AI 新闻
前天AI资讯
# 具体日期
2026-01-13的AI新闻
# 按分类筛选
昨天的模型发布相关资讯# 查询并询问是否生成网页
昨天AI资讯,生成网页
# 直接选择主题
昨天AI资讯,生成苹果风网页# 生成社交媒体分享卡片
昨天AI资讯,生成分享图片
生成日报卡片图片自动生成小红书风格封面,包含:
封面保存在 docs/xiaohongshu/ 目录,在浏览器中打开 HTML 文件后点击"保存封面"按钮即可下载。
用户: 昨天AI资讯
Claude: [展示 Markdown 格式的资讯摘要,包含核心摘要和分类资讯]
用户: 生成网页
Claude: 可选主题:
- 苹果风 - 简洁专业,适合技术内容
- 深海蓝 - 商务风格,适合产品发布
- 秋日暖阳 - 温暖活力,适合社区动态
用户: 苹果风
Claude: [生成 HTML 网页并保存到 docs/ 目录]ai-daily-skill/
├── .claude-plugin/
│ └── plugin.json # 插件清单
├── plugins/ai-daily/skills/ai-daily/
│ ├── SKILL.md # 主技能定义
│ ├── scripts/
│ │ └── fetch_news.py # RSS 获取脚本
│ └── references/
│ ├── output-format.md # Markdown 输出格式
│ └── html-themes.md # 网页主题提示词
├── docs/ # 生成的网页和文档
│ ├── images/ # 分享卡片图片
│ ├── xiaohongshu/ # 小红书封面
│ ├── css/ # 样式文件
│ └── *.html # 生成的 HTML 页面
├── src/ # GitHub Actions 自动化脚本
│ ├── main.py # 主入口
│ ├── config.py # 配置管理
│ ├── rss_fetcher.py # RSS 获取
│ ├── claude_analyzer.py # AI 分析
│ ├── html_generator.py # HTML 生成
│ ├── image_generator.py # 图片生成
│ ├── xiaohongshu_generator.py # 小红书封面生成
│ └── notifier.py # 邮件通知
└── README.md# AI Daily · 2026年1月13日
## 核心摘要
- Anthropic 发布 Cowork 统一 Agent 平台
- Google 开源 MedGemma 1.5 医疗多模态模型
- LangChain Agent Builder 正式发布
## 模型发布
### MedGemma 1.5
Google 发布 4B 参数医疗多模态模型...
[原文链接](https://news.smol.ai/issues/26-01-13-not-much/)
## 关键词
#Anthropic #Google #MedGemma #LangChain| 主题 | 风格 | 适用场景 |
|---|---|---|
| 苹果风 | 简洁专业 | 技术内容、产品评测 |
| 深海蓝 | 商务风格 | 产品发布、企业动态 |
| 秋日暖阳 | 温暖活力 | 社区新闻、讨论 |
A: 支持相对日期(昨天、前天、今天)和绝对日期(YYYY-MM-DD 格式)。
A: 系统会友好提示,并列出可用的日期范围供选择。
A: 网页保存在 docs/ 目录,文件名为 {日期}.html 格式。
A: 分享卡片图片保存在 docs/images/ 目录,文件名为 {日期}.png 格式。
A: 不需要。Skill 使用 Claude Code 内置的 AI 能力,无需额外配置。
A: 需要设置环境变量 ENABLE_IMAGE_GENERATION=true,并配置 Firefly API。
A: 可以。主题提示词在 references/html-themes.md 中,可以修改或添加新主题。
# Claude API 配置(必需)
ZHIPU_API_KEY=your_api_key
ANTHROPIC_BASE_URL=https://open.bigmodel.cn/api/anthropic
# 图片生成配置(可选)
ENABLE_IMAGE_GENERATION=true
FIREFLY_API_URL=https://fireflycard-api.302ai.cn/api/saveImg
FIREFLY_API_KEY=your_firefly_key
# 邮件通知配置(可选)
SMTP_HOST=smtp.example.com
SMTP_PORT=587
[email protected]
SMTP_PASSWORD=your_password
[email protected]pip install feedparser requests# 获取可用日期范围
python plugins/ai-daily/skills/ai-daily/scripts/fetch_news.py --date-range
# 获取特定日期内容
python plugins/ai-daily/skills/ai-daily/scripts/fetch_news.py --date 2026-01-13
# 获取昨天的内容
python plugins/ai-daily/skills/ai-daily/scripts/fetch_news.py --relative yesterday欢迎提交 Issue 和 Pull Request!
MIT License
如果该项目帮助了您,请作者喝杯咖啡吧 ☕️
<img src="https://raw.githubusercontent.com/geekjourneyx/awesome-developer-go-sail/main/docs/assets/wechat-reward-code.jpg" alt="微信打赏码" width="200" />
geekjourneyx关注公众号,获取更多 AI 编程、AI 工具与 AI 出海建站的实战分享:
<p> <img src="https://raw.githubusercontent.com/geekjourneyx/awesome-developer-go-sail/main/docs/assets/qrcode.jpg" alt="公众号:极客杰尼" width="180" /> </p>
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.