Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

ai-news-briefing艾新闻发布会

Agent Skill

ai-news-briefing 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

13,187

周安装

544

GitHub Stars

公开资料未说明

下载量

4,308
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ai-news-briefing(艾新闻发布会)
来源仓库:https://github.com/sharkwind/ai-news-briefing
安装命令:
openclaw skills install ai-news-briefing
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ai-news-briefing

简介

专业 AI 新闻简报监控 10 个顶级信源并提炼高质量摘要。

  • 适合持续跟踪行业趋势与关键进展,节省信息筛选时间。
  • 输出中文简报,便于非英语背景用户理解最新动向。ai-news-briefing 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 依赖外部 RSS 服务稳定性,建议定期检查数据完整性。
  • 安装后自动集成至 OpenClaw 工作流,支持定时推送功能。

SKILL.md

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

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:

  • "生成AI新闻简报" or "生成今日AI新闻简报"
  • "监控AI新闻源" or "检查AI新闻更新"
  • "AI行业动态分析" or "AI新闻摘要"
  • "智能AI新闻简报" or "专业AI新闻分析"

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 overview

Command 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 ""
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 "• 分析模型: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:

  • 📅 Date Header - Current date and time
  • 📰 Source Analysis - Individual analysis of each news source
  • 📝 Content Summaries - AI-related news items with intelligent summarization
  • 📊 Trend Insights - Industry patterns and key developments
  • 🔗 Source Attribution - Clear data source references
  • 🎯 Actionable Intelligence - Practical insights for decision-making

Integration Benefits

  • Skill Orchestration - Seamlessly combines multiple OpenClaw skills
  • Professional Workflow - Industry-standard news briefing process
  • Intelligent Analysis - Uses summarize skill for deep content understanding
  • Time Filtering - Focus on recent and relevant AI news
  • Chinese Optimization - 70B model generates high-quality native content
  • Extensible Design - Easy to add new sources or modify analysis criteria

Dependencies

  • summarize skill - For intelligent content analysis
  • browser-execution skill - For web content extraction
  • 70B model - For optimal Chinese language generation
  • OpenClaw 2026.2.27+ - For skill orchestration support

Performance Notes

  • Processes all 10 sources in approximately 2-3 minutes
  • Generates comprehensive briefings with 5-7 key insights per source
  • Optimized for Chinese language output and cultural context
  • Handles website access failures gracefully with fallback messaging

This skill demonstrates the full power of OpenClaw's skill ecosystem working together to create professional, automated AI industry intelligence.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

80.96%
按下载量换算3,488

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills