Install
openclaw skills install ai-news-daily-reportDaily report generation with timeliness verification for news and content freshness checking.
openclaw skills install ai-news-daily-reportDaily report generation with timeliness verification for news and content freshness checking.
This skill provides daily report generation with built-in timeliness verification. Perfect for:
## Standard Format
- Use explicit dates: "2026-05-30" not "1 hour ago"
- Categorize by freshness:
- 📅 Today's News (发布日期 = 当天)
- 📅 Yesterday's News (发布日期 = 前一天)
- 📅 Recent News (发布日期在3天内)
def verify_timeliness(news_item):
"""
Verify news timeliness
"""
# 1. Check publication date
pub_date = news_item.get('publication_date')
# 2. Cross-reference multiple sources
sources = news_item.get('sources', [])
if len(sources) < 2:
return "Insufficient sources"
# 3. Check for relative time expressions
content = news_item.get('content', '')
if any(phrase in content for phrase in ['1小时前', '2小时前', '刚刚']):
return "Contains relative time expressions"
# 4. Verify date accuracy
today = datetime.now().strftime('%Y-%m-%d')
if pub_date == today:
return "Today's news"
elif pub_date == (datetime.now() - timedelta(days=1)).strftime('%Y-%m-%d'):
return "Yesterday's news"
else:
return f"News from {pub_date}"
# 🌙 AI科技晚报 (2026-05-30)
**时效性验证**: ✅ 所有新闻均为当日或昨日发布
**质量评分**: 8.5/10 (新鲜度: 9, 准确性: 8, 相关性: 8)
## 📅 今日新闻(5月30日)
1. **苹果AI图像压缩技术**
- 发布时间: 2026-05-30 10:30
- 来源: 新浪财经、虎嗅网、36氪
- 链接: https://finance.sina.com.cn/roll/2026-05-30/doc-inhzrvnr8889579.shtml
## 📅 昨日新闻(5月29日)
2. **Claude Opus 4.8发布**
- 发布时间: 2026-05-29 09:00
- 来源: Anthropic官方、腾讯新闻、知乎
- 链接: https://www.anthropic.com/news/claude-opus-4-8
## 📅 近期重要新闻(5月26-28日)
3. **DeepSeek V4多模态模型预告**
- 发布时间: 2026-05-26 15:00
- 来源: 腾讯新闻
- 链接: https://news.qq.com/rain/a/20260526A05JEB00
## 🔍 时效性验证报告
- ✅ 今日新闻: 1条
- ✅ 昨日新闻: 1条
- ✅ 近期新闻: 1条
- ❌ 过期新闻: 0条
- ⚠️ 需验证: 0条
**验证方法**:
1. 检查新闻发布日期
2. 交叉验证多个来源
3. 避免相对时间表述
4. 使用可靠新闻源
{
"name": "AI科技晚报",
"schedule": {"kind": "cron", "expr": "0 20 * * *", "tz": "Asia/Shanghai"},
"payload": {
"kind": "agentTurn",
"message": "生成今日AI科技晚报,要求:1. 所有新闻必须有明确发布日期 2. 避免相对时间表述 3. 交叉验证多个来源 4. 包含时效性验证报告"
}
}
MIT License - Feel free to modify and distribute.