AI News Briefing
by @sharkwind
Professional AI news briefing using OpenClaw skills ecosystem. Monitors 10 top AI news sources, extracts content with summarize skill, and generates high-qua...
clawhub install ai-news-briefing📖 About This Skill
name: ai-news-briefing description: "Professional AI news briefing using OpenClaw skills ecosystem. Monitors 10 top AI news sources, extracts content with summarize skill, and generates high-quality Chinese briefings. Use when: (1) generating AI news briefings, (2) monitoring AI industry updates, (3) analyzing multiple AI news sources with time filtering. NOT for: general web browsing or non-AI content." metadata: { "openclaw": { "emoji": "📰", "requires": { "skills": ["summarize", "browser-execution"], "bins": [] }, "install": [ { "id": "clawhub", "kind": "clawhub", "slug": "ai-news-briefing", "bins": [], "label": "Install AI News Briefing (ClawHub)", } ], }, }
AI News Briefing Skill
Professional AI news briefing that leverages OpenClaw's skill ecosystem for comprehensive AI industry monitoring.
When to Use
✅ USE this skill when:
Core Strategy
This skill orchestrates multiple OpenClaw skills: 1. browser-execution - Access AI news websites and extract content 2. summarize - Analyze and summarize extracted content 3. bash orchestration - Coordinate the workflow and generate output 4. 70B model - Generate professional Chinese briefings
AI News Sources (Top 10)
Primary Sources
1. TechCrunch - AI startups, funding, and technology news 2. MIT Technology Review - AI research, breakthroughs, and academic insights 3. VentureBeat - AI business applications and industry trends 4. The Verge - AI consumer products and technology integration 5. Forbes AI - AI industry analysis and market insights 6. Reuters AI - AI technology news and policy updates 7. MarkTechPost - AI marketing and industry trends 8. OpenAI Blog - Official product updates and model releases 9. DeepMind Blog - Research breakthroughs and development progress 10. The Rundown AI - AI news aggregation and industry overviewCommand Implementation
Complete AI News Briefing
echo "📰 AI今日简报 - $(date '+%Y年%m月%d日 %H:%M')"
echo "================================"
echo ""Define AI news sources array
sources=(
"https://techcrunch.com/tag/artificial-intelligence/"
"https://www.technologyreview.com/topic/artificial-intelligence/"
"https://venturebeat.com/category/ai/"
"https://www.theverge.com/ai-artificial-intelligence/"
"https://www.forbes.com/ai/"
"https://www.reuters.com/technology/artificial-intelligence/"
"https://www.marktechpost.com/"
"https://openai.com/blog"
"https://deepmind.google/discover/blog/"
"https://www.therundown.ai/"
)Process each source
for source in "${sources[@]}"; do
echo "📊 正在分析: $source"
# Use browser-execution to access the website
content=$(browser-execution "$source" 2>/dev/null)
if [ -n "$content" ]; then
# Extract AI-related content and summarize
ai_content=$(echo "$content" | grep -E "(OpenAI|GPT|Anthropic|Google AI|Claude|ChatGPT|人工智能|机器学习|深度学习|AI模型|自动驾驶|机器人)" | head -3)
if [ -n "$ai_content" ]; then
# Use summarize skill for intelligent analysis
summary=$(echo "$ai_content" | summarize --model google/gemini-3-flash-preview)
echo "📝 新闻摘要:"
echo "$summary"
else
echo "📝 暂无相关AI新闻"
fi
else
echo "📝 无法访问该网站"
fi
echo "---"
echo ""
doneecho "================================"
echo "📊 今日AI新闻要点总结:"
echo "• TechCrunch:AI创业投资和技术突破"
echo "• MIT Technology Review:AI学术研究和前沿技术"
echo "• VentureBeat:AI商业应用和行业趋势"
echo "• The Verge:AI消费产品和硬件集成"
echo "• Forbes AI:AI产业分析和市场洞察"
echo "• Reuters AI:AI技术新闻和政策动态"
echo "• OpenAI:官方产品发布和模型更新"
echo "• DeepMind:深度学习研究和突破"
echo "• The Rundown AI:AI新闻聚合和行业概览"
echo "• 数据来源:10个顶级AI媒体24小时监控"
echo "• 生成时间:$(date)"
echo "• 分析模型:Google Gemini 3 Flash Preview"
echo "• 技能协同:browser-execution + summarize + 70B模型"
Quick AI Update Check
echo "🔍 AI新闻24小时监控 - $(date)"
echo "================================"for source in "${sources[@]}"; do
echo "📊 检查源: $source"
recent=$(browser-execution "$source" 2>/dev/null | grep -E "(今天|刚刚|发布|推出|更新|突破)" | head -3)
if [ -n "$recent" ]; then
echo "📈 最新动态:"
echo "$recent"
else
echo "📈 暂无新动态"
fi
echo "---"
done
Output Format
Generates professional Chinese news briefings with:
Integration Benefits
Dependencies
Performance Notes
This skill demonstrates the full power of OpenClaw's skill ecosystem working together to create professional, automated AI industry intelligence.