skills/content-source-aggregator/SKILL.md
实时数据采集中心。从 Reddit/GitHub/HackerNews/ArXiv/YouTube/B站/微博/知乎等 16+ 平台免费获取实时热点、技术趋势、AI前沿论文,输出标准化热点池。小data 专属管理。
npx skillsauth add aaaaqwq/claude-code-skills content-source-aggregatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
角色定位:你是团队的数据调控大师。所有团队成员需要的实时数据、热点趋势、市场信号,都由你通过此 skill 统一采集和管理。
| 优先级 | 平台 | 数据类型 | 方式 | 状态 | |--------|------|----------|------|------| | 🥇 | Reddit | AI/Tech社区讨论 | old.reddit.com JSON API | ✅ 15个子板块 | | 🥇 | GitHub | 开源项目趋势 | Trending + Search API | ✅ | | 🥇 | HackerNews | 技术创业热点 | Firebase API | ✅ | | 🥇 | ArXiv | AI/ML前沿论文 | Atom API | ✅ cs.AI/LG/CL/CV | | 🥈 | Twitter/X | AI KOL动态 | syndication API | ⚠️ 需代理 | | 🥈 | YouTube | AI/Tech视频 | RSS Feed | ✅ 12频道 | | 🥈 | ProductHunt | 新产品发布 | RSS Feed | ✅ | | 🥉 | B站 | 国内视频热点 | 公开API | ✅ | | 🥉 | 知乎 | 中文问答热榜 | 60s API | ✅ | | 🥉 | 微博 | 社会热搜 | 60s API | ✅ | | 🥉 | 头条 | 新闻热榜 | 60s API | ✅ | | 🥉 | 抖音 | 短视频热搜 | 60s API | ✅ | | 🥉 | LinuxDo | 技术社区 | Discourse API | ✅ | | ⏳ | 小红书 | 生活消费 | 需登录态 | 待接入 | | ⏳ | 微信公众号 | 深度文章 | 需登录态 | 待接入 |
python3 ~/clawd/skills/content-source-aggregator/scripts/fetch_all.py
python3 ~/clawd/skills/content-source-aggregator/scripts/fetch_all.py --source reddit
python3 ~/clawd/skills/content-source-aggregator/scripts/fetch_all.py --source github
python3 ~/clawd/skills/content-source-aggregator/scripts/fetch_all.py --source hackernews
python3 ~/clawd/skills/content-source-aggregator/scripts/fetch_all.py --source arxiv
python3 ~/clawd/skills/content-source-aggregator/scripts/fetch_all.py --source youtube
python3 ~/clawd/skills/content-source-aggregator/scripts/fetch_all.py --source producthunt
python3 ~/clawd/skills/content-source-aggregator/scripts/fetch_all.py --source bilibili
python3 ~/clawd/skills/content-source-aggregator/scripts/fetch_all.py --dry-run
标准化 JSON 写入 ~/clawd/workspace/content-pipeline/hotpool/YYYY-MM-DD.json
{
"date": "2026-03-08",
"fetched_at": "2026-03-08T10:00:00+08:00",
"total": 150,
"sources": {"reddit": 54, "github": 11, "hackernews": 15, ...},
"items": [
{
"source": "reddit",
"title": "...",
"url": "...",
"summary": "...",
"category": "r/artificial",
"engagement": {"upvotes": 1200, "comments": 340},
"author": "...",
"fetched_at": "..."
}
]
}
编辑 scripts/config.json 自定义:
source_priority — 采集优先级顺序reddit.subreddits — 关注的子板块(当前15个AI/Tech核心板块)twitter.accounts — 关注的X账号(当前28个AI KOL)youtube.channels — 关注的频道(当前12个)github.min_stars — 最低星数阈值arxiv.categories — ArXiv分类(cs.AI/LG/CL/CV)hackernews.limit — HackerNews获取数量其他 agent 可以通过以下方式获取数据:
~/clawd/workspace/content-pipeline/hotpool/YYYY-MM-DD.jsonsource、title、urlhttps://old.reddit.com/r/{sub}/hot.json?limit=5https://api.github.com/search/repositories?q=stars:>{min_stars}+pushed:>{date}&sort=starshttps://hacker-news.firebaseio.com/v0/topstories.jsonhttps://hacker-news.firebaseio.com/v0/item/{id}.jsonhttp://export.arxiv.org/api/query?search_query=cat:cs.AI+OR+cat:cs.LG&sortBy=submittedDate&sortOrder=descending&max_results=10https://syndication.twitter.com/srv/timeline-profile/screen-name/{username}CONTENT_PROXY(默认 http://127.0.0.1:7890)https://www.youtube.com/feeds/videos.xml?channel_id={id}https://api.bilibili.com/x/web-interface/ranking/v2?rid=0&type=allhttps://60s.viki.moe/v2/weibohttps://60s.viki.moe/v2/zhihuhttps://60s.viki.moe/v2/toutiaohttps://60s.viki.moe/v2/douyin本 skill 是内容工厂流水线的 Phase 1(数据采集层):
小data(采集) → 小research(选题评分) → 小content(内容创作) → 小market(分发推广)
数据流向:
testing
通用自媒体文章自动发布工具。支持百家号、搜狐号、知乎、微信公众号、小红书、抖音号六个平台的自动化发布流程。使用Playwright自动化实现平台导航和发布,支持通过storageState管理Cookie实现账号切换。
development
# SKILL.md - Model Configuration Status (mcstatus) ## 触发条件 - `/mcstatus` 命令 - 用户询问模型配备、模型配置、model status、模型列表等 ## 功能 实时生成 Agent + Cron 的模型配置报告,展示当前所有 agent 的主模型/fallback链和所有 cron 任务的模型分配。 ## 执行步骤 ### Step 1: 收集 Agent 模型配置 读取各 agent 的 models.json 获取主模型和 fallback 链: ```bash for agent in main ops code quant data research content market finance pm law product sales batch; do config=$(cat ~/.openclaw/agents/$agent/agent/models.json 2>/dev/null) if [ -n "$config" ]; then echo "=== $agent
tools
MCP 服务器智能管理助手。自动检测 MCP 可用性、智能开关、功能问答,提供人性化的 MCP 管理体验。
tools
从GitHub搜索并自动安装配置MCP(Model Context Protocol)服务器工具到Claude配置文件。当用户需要安装MCP工具时触发此技能。工作流程:搜索GitHub上的MCP项目 -> 提取npx配置 -> 添加到~/.claude.json -> 处理API密钥(如有)。