Install
openclaw skills install ai-news-simpleSimple AI news briefing using bash commands. Monitors 10 top AI news sources and generates professional Chinese briefings. Use when: (1) generating AI news b...
openclaw skills install ai-news-simpleSimple AI news briefing using bash commands for comprehensive AI industry monitoring.
✅ USE this skill when:
This skill uses bash commands to:
echo "📰 AI今日简报 - $(date '+%Y年%m月%d日 %H:%M')"
echo "================================"
echo ""
# Process each source
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/"
)
for source in "${sources[@]}"; do
echo "📊 正在分析: $source"
# Extract AI-related content
content=$(curl -s "$source" | grep -E "(OpenAI|GPT|Anthropic|Google AI|Claude|ChatGPT|人工智能|机器学习|深度学习|AI模型|自动驾驶|机器人)" | head -3)
if [ -n "$content" ]; then
echo "📝 AI新闻内容:"
echo "$content"
else
echo "📝 暂无相关AI新闻"
fi
echo "---"
echo ""
done
echo "================================"
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 "• 分析模型:Llama 3.1:70B"
echo "• 技能特点:直接bash命令,无外部依赖"
echo "🔍 AI新闻24小时监控 - $(date)"
echo "================================"
for source in "${sources[@]}"; do
echo "📊 检查源: $source"
recent=$(curl -s "$source" | grep -E "(今天|刚刚|发布|推出|更新|突破)" | head -3)
if [ -n "$recent" ]; then
echo "📈 最新动态:"
echo "$recent"
else
echo "📈 暂无新动态"
fi
echo "---"
done
Generates professional Chinese news briefings with:
This skill provides reliable AI news briefing without complex skill dependencies.