skills/.trash/news-daily/news-daily/SKILL.md
Daily AI and tech news aggregator that fetches summarizes and pushes news from authoritative tech sites. Sources include 机器之心 36氪 TechCrunch The Verge and MIT Technology Review. Use when user asks for daily tech/AI news or scheduled news delivery is needed or news aggregation and summarization from multiple sources is required or setting up automated news push notifications to Telegram/WhatsApp.
npx skillsauth add aaaaqwq/claude-code-skills news-dailyInstall 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.
自动化每日新闻聚合和推送系统,专注于 AI 和前沿科技新闻。从权威来源抓取文章,生成 AI 摘要,通过 Telegram/WhatsApp 定时推送。
核心特性:
| 来源 | URL | 特点 | |------|-----|------| | 机器之心 | https://www.jiqizhixin.com | AI 深度报道 | | 36氪 | https://36kr.com | 科技创投 | | 量子位 | https://www.qbitai.com | AI 快讯 | | 新智元 | https://www.xinzhiyuan.com | AI 前沿 |
| 来源 | URL | 特点 | |------|-----|------| | TechCrunch | https://techcrunch.com | 全球科技 | | The Verge | https://www.theverge.com | 消费科技 | | MIT Tech Review | https://www.technologyreview.com | 前沿技术 | | Hacker News | https://news.ycombinator.com | 技术社区 | | Ars Technica | https://arstechnica.com | 深度技术 |
使用 web_fetch 工具从各个来源抓取:
1. 访问新闻网站首页或 RSS
2. 提取文章标题、摘要、链接、时间
3. 按 AI/科技 关键词过滤
4. 去重并按时间排序
1. 选择最重要的 3-5 条新闻
2. 生成简洁中文摘要
3. 保留原文链接和来源
4. 格式化输出
使用 telegram-push skill 推送到群聊(推荐):
# 使用独立的 newsrebot 推送,不影响 OpenClaw 主 bot
/home/aa/clawd/skills/telegram-push/telegram-push.sh "新闻内容"
# 或直接 curl
curl -s -X POST "https://api.telegram.org/bot$(pass tokens/telegram-newsrobot)/sendMessage" \
-H "Content-Type: application/json" \
-d '{
"chat_id": -1003824568687,
"text": "新闻内容",
"parse_mode": "HTML"
}'
推送目标:
-1003824568687pass tokens/telegram-newsrobot详见 /home/aa/clawd/skills/telegram-push/SKILL.md
| 任务 | 时间 | Cron 表达式 |
|------|------|-------------|
| 早报 | 08:00 | 0 8 * * * |
| 午报 | 13:00 | 0 13 * * * |
| 晚报 | 18:00 | 0 18 * * * |
请抓取今日科技新闻并推送到 Telegram。
📰 **抓取步骤**:
1. 使用 web_fetch 访问以下网站:
- https://www.jiqizhixin.com (机器之心)
- https://36kr.com/newsflashes (36氪快讯)
- https://techcrunch.com (TechCrunch)
2. 从每个来源提取 2-3 条最新 AI/科技新闻
3. 筛选标准:
- 24小时内发布
- AI、大模型、科技相关
- 有实质内容(非广告)
4. 生成摘要并推送
📋 **输出格式**:
📰 科技早报 | YYYY-MM-DD
━━━━━━━━━━━━━━━━━━━━━━━━
🤖 [标题]
来源:[网站名] | [时间]
[链接]
摘要:[50-100字摘要]
━━━━━━━━━━━━━━━━━━━━━━━━
[重复 3-5 条]
📊 今日共精选 X 条重点新闻
❌ 不要:
✅ 要:
# 检查网站是否可访问
curl -I https://www.jiqizhixin.com
# 检查 web_fetch 工具
# 在 OpenClaw 中测试
# 检查 Telegram 配置
openclaw status | grep Telegram
# 检查 message 工具
openclaw channels status
# 查看任务状态
openclaw cron list
# 手动触发测试
openclaw cron run <job_id>
使用 telegram-push skill 推送到 DailyNews 群:
-1003824568687pass tokens/telegram-newsrobot详见 /home/aa/clawd/skills/telegram-push/SKILL.md
在任务 prompt 中修改网站列表即可。
由小a维护 - 确保每日新闻真实可信
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密钥(如有)。