← Back to Skills Marketplace
AI全链路科技资讯工厂
by
zlszhonglongshen
· GitHub ↗
· v1.0.0
· MIT-0
65
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install ai-tech-news-factory
Description
AI全链路科技资讯工厂 — 热点追踪 → RSS深度采集 → 知识卡片+小红书+公众号多平台一键发布
README (SKILL.md)
AI全链路科技资讯工厂
将多个专业 Skill 编排成完整的科技资讯生产流水线,实现从热点发现到多平台一键发布的全自动化。
🎯 核心价值
- 一键启动: 一句话触发完整资讯生产链路
- 多平台覆盖: 同时输出小红书卡片笔记 + 公众号深度文章
- 零重复劳动: 一次采集,多格式生成
- 质量底线: 竞品分析思路 + 深度内容获取思路不可省略
🔧 依赖 Skills
| Skill | 用途 | 来源 |
|---|---|---|
content-trend-weapon |
热点追踪与趋势分析 | 本地 |
rss-ai-reader |
RSS深度内容采集与AI摘要 | clawhub |
card-renderer |
小红书风格知识卡片生成 | 本地 |
xiaohongshutools |
小红书笔记发布 | 本地 |
wechat-article-pro |
公众号深度文章生成与发布 | 本地 |
📐 编排架构
[content-trend-weapon]
↓ 热点话题 + 趋势分析
[rss-ai-reader]
↓ 深度内容采集(标题+摘要+正文)
↓ 智能去重 + 质量过滤
├──→ [card-renderer] → 小红书封面卡片
│ ↓
│ [xiaohongshutools] → 小红书笔记发布
│
└──→ [wechat-article-pro] → 公众号深度文章(2000-3000字)
↓
发布到公众号
🚀 使用方法
方式一:完整流水线(推荐)
帮我生成今天的AI科技资讯日报:
1. 用 content-trend-weapon 追踪今日AI和大模型热点
2. 用 rss-ai-reader 抓取 techcrunch、verge、MIT Tech Review 的最新文章
3. 生成3张不同风格的 card-renderer 知识卡片
4. 用 xiaohongshutools 发布小红书笔记(3条:热点、应用、深度各1条)
5. 用 wechat-article-pro 生成一篇3000字的公众号深度文章
6. 保存到 /root/articles/YYYY-MM-DD/
方式二:单步执行
用 rss-ai-reader 抓取今天的 AI 新闻,生成摘要
用 card-renderer 把这段文案渲染成赛博朋克风知识卡片
用 wechat-article-pro 写一篇关于"AI Agent发展现状"的公众号文章
⚙️ 配置说明
RSS 订阅源配置(rss-ai-reader)
编辑 config/config.yaml 添加更多订阅源:
rss_sources:
- url: https://techcrunch.com/feed/
tag: 科技
- url: https://www.theverge.com/rss/index.xml
tag: AI
- url: https://news.mit.edu/topic/artificial-intelligence-rss
tag: MIT
小红书发布配置(xiaohongshutools)
确保已配置 cookies 和 session(参考 SKILL.md)。
公众号配置(wechat-article-pro)
使用刘润风格深度写作,自动生成封面图。
📁 输出结构
/root/articles/YYYY-MM-DD/
├── trending-topics.md # 热点追踪报告
├── rss-summaries.md # RSS采集摘要
├── cards/ # 知识卡片图片
│ ├── card-1-cyberpunk.png
│ ├── card-2-macpro.png
│ └── card-3-bauhaus.png
├── xiaohongshu/
│ └── posts.json # 小红书发布记录
└── wechat-article.md # 公众号文章 Markdown
🔄 定时自动化
配合 OpenClaw cron 实现每日自动执行:
# 每日 08:00 UTC 执行完整流水线
cron add --name "AI科技资讯工厂" \
--schedule "cron:0 8 * * *" \
--sessionTarget isolated \
--payload '{"kind":"agentTurn","message":"执行 ai-tech-news-factory 完整流水线,保存到 /root/articles/{date}/"}'
💡 质量要求
- 竞品分析思路:生成内容前必须分析同类内容,指出差异化优势
- 内容获取思路:明确说明信息来源和抓取策略
- 深度要求:公众号文章不低于2000字,含代码示例或数据支撑
- 卡片风格:封面用赛博朋克,详情页用包豪斯或Mac Pro风格
🔧 故障排除
| 问题 | 解决方案 |
|---|---|
| RSS 抓取失败 | 检查网络连接;确认 feed URL 可访问 |
| 小红书发布失败 | 刷新 cookies;检查 session 有效性 |
| 卡片渲染失败 | 确认 canvas依赖安装;检查文案长度 |
| 公众号发布失败 | 确认公众号授权状态;检查封面图大小 |
Usage Guidance
这套技能本质上是一个编排器:它会调用本地发布工具把内容发到小红书和公众号。重点在于凭据和自动执行——在安装/启用前请做到:1) 确认 xiaohongshutools 和 wechat-article-pro 等本地 skill 的实现,审查它们如何存储/使用 cookies 和授权 token(不要把凭据明文放在不受保护的位置);2) 明确这些凭据存放路径(config/config.yaml、/root/.openclaw/... 或其他),并确认元数据与文档一致;3) 在真实账号上运行前,使用测试或沙箱账号验证发布流程;4) 暂时不要启用 cron 定时任务,直到凭据管理和自动发布权限经过验证;5) 如果不希望写入系统根路径,可修改输出目录到受限用户目录并限制访问权限;6) 若发现未经授权的凭据使用或异常发布行为,立即撤销/轮换相关 cookies 或第三方授权。若你无法或不愿自行审计这些本地发布 skill,请不要启用自动发布能力,仅在审计通过后再允许定时/自动执行。
Capability Analysis
Type: OpenClaw Skill
Name: ai-tech-news-factory
Version: 1.0.0
The skill bundle is a high-level orchestrator designed to automate an AI news content pipeline, including trend tracking, RSS collection, and multi-platform publishing (WeChat and Xiaohongshu). It defines a structured workflow across multiple sub-skills (e.g., rss-ai-reader, card-renderer) and uses standard file paths (/root/articles/) and cron scheduling for its stated purpose. No evidence of malicious intent, data exfiltration, or harmful prompt injection was found in the SKILL.md or workflow.json files.
Capability Assessment
Purpose & Capability
技能宣称将多个本地/仓库 Skill 串联成资讯生产与多平台发布流水线;SKILL.md、README 和 workflow.json 在功能上是一致的,所需步骤(热点发现→RSS采集→卡片生成→小红书/公众号发布)与描述相符。
Instruction Scope
运行说明要求写入 /root/articles/{date}/、编辑 config/config.yaml、并使用本地发布工具(xiaohongshutools、wechat-article-pro)进行自动发布,还示例性地添加系统 cron 任务。这些操作涉及文件系统写入、配置修改与定时自动化,超出仅“文本生成”的最小权限范围;SKILL.md 没有明确限制或审核步骤,授予广泛操作自由度。
Install Mechanism
无安装步骤、无二进制下载或外部 install spec(instruction-only),这降低了安装时引入远程可执行代码的风险。
Credentials
元数据显示无必需环境变量或配置路径,但文档却明确要求配置 cookies/session(小红书)和公众号授权,并引用 /root/.openclaw/... 本地 skill 路径。在未声明凭据需求的情况下 orchestrator 会依赖本地技能的凭据存储,导致权限/凭据未被透明声明或审查。
Persistence & Privilege
技能未设置 always:true(正常),但示例中展示了通过 cron 定时自动执行完整流水线并发布内容。自动化发布结合长期凭据会扩大潜在影响面——建议在确认凭据位置与权限前不要启用自动调度。
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install ai-tech-news-factory - After installation, invoke the skill by name or use
/ai-tech-news-factory - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of ai-tech-news-factory — an automated end-to-end AI tech news workflow:
- One-click pipeline: From trend tracking to multi-platform publishing (Xiaohongshu + WeChat Official Account).
- Integrates key skills: hot topic discovery, deep RSS collection, card rendering, and multi-format publishing.
- Rich output: Knowledge cards (multiple styles), daily summaries, deep-dive articles (2000+ words), organized saved outputs per day.
- Designed for zero-repetition and quality-driven content, including competitive analysis and source transparency.
- Supports both full-automation (cron scheduling) and step-by-step usage.
Metadata
Frequently Asked Questions
What is AI全链路科技资讯工厂?
AI全链路科技资讯工厂 — 热点追踪 → RSS深度采集 → 知识卡片+小红书+公众号多平台一键发布. It is an AI Agent Skill for Claude Code / OpenClaw, with 65 downloads so far.
How do I install AI全链路科技资讯工厂?
Run "/install ai-tech-news-factory" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is AI全链路科技资讯工厂 free?
Yes, AI全链路科技资讯工厂 is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does AI全链路科技资讯工厂 support?
AI全链路科技资讯工厂 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created AI全链路科技资讯工厂?
It is built and maintained by zlszhonglongshen (@zlszhonglongshen); the current version is v1.0.0.
More Skills