← Back to Skills Marketplace
sharkwind

AI News Briefing

by Gary.AI · GitHub ↗ · v1.0.1
cross-platform ✓ Security Clean
428
Downloads
0
Stars
1
Active Installs
2
Versions
Install in OpenClaw
/install 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-qua...
README (SKILL.md)

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.

Usage Guidance
This skill appears to do what it says: fetch public AI news sites and summarize AI-related content. Before installing or running it: (1) Inspect the 'browser-execution' and 'summarize' skills — see what credentials or network access they require and whether they run remote models — because this skill delegates fetch and model calls to them. (2) Confirm that using 'browser-execution' to scrape those sites complies with the sites' terms and won't access private data. (3) Verify that the summarize skill supports the referenced Google model and that any API keys are stored securely (not supplied by this skill). (4) Because the package source/homepage is not provided here, prefer installing from a trusted registry entry or repository URL and, if in doubt, run tests in an isolated environment. If any dependent skill requests unrelated secrets or persistent global permissions, treat that as a red flag.
Capability Analysis
Type: OpenClaw Skill Name: ai-news-briefing Version: 1.0.1 The skill 'ai-news-briefing' is designed to generate AI news briefings by orchestrating `browser-execution` and `summarize` skills. While `browser-execution` is a powerful capability, its usage in `SKILL.md` is strictly limited to a hardcoded list of 10 reputable AI news sources, preventing arbitrary web browsing or data exfiltration to malicious sites. The extracted content is further filtered for AI-related keywords before summarization. There is no evidence of prompt injection attempts against the agent, data exfiltration, malicious execution, or persistence mechanisms. All actions align with the stated purpose of providing AI news summaries.
Capability Assessment
Purpose & Capability
Name, description, and required capabilities line up: it needs web access (browser-execution) and summarization (summarize) to monitor and condense AI news sources. No unrelated environment variables, binaries, or config paths are requested by this skill.
Instruction Scope
SKILL.md stays within the stated purpose: iterate listed public news sites, extract AI-related lines, and call summarize for analysis. Minor assumptions: it expects 'browser-execution' and 'summarize' to be callable as CLI-like commands; it also explicitly references a Google model (google/gemini-3-flash-preview) without declaring credentials — that is reasonable if the summarize skill handles model selection/credentials, but you should confirm how those dependent skills behave at runtime.
Install Mechanism
Instruction-only skill with no extracted or remote install artifacts in the registry package. The SKILL.md contains a ClawHub install metadata block (informational) but there is no high-risk download or arbitrary-execute install step present in the package files.
Credentials
This skill itself requests no environment variables or secrets (proportionate). However, it depends on other skills (browser-execution, summarize) that commonly need API keys/credentials; you should review those skills' requirements because any credentials they need are not surfaced here.
Persistence & Privilege
No 'always: true' flag and no claims of modifying other skills or global agent config. Default autonomous invocation is allowed (platform default) but does not combine with other concerning privileges in this package.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install ai-news-briefing
  3. After installation, invoke the skill by name or use /ai-news-briefing
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
Fix dependency definition
v1.0.0
Initial release: Professional AI news briefing using OpenClaw skills ecosystem
Metadata
Slug ai-news-briefing
Version 1.0.1
License
All-time Installs 1
Active Installs 1
Total Versions 2
Frequently Asked Questions

What is AI News Briefing?

Professional AI news briefing using OpenClaw skills ecosystem. Monitors 10 top AI news sources, extracts content with summarize skill, and generates high-qua... It is an AI Agent Skill for Claude Code / OpenClaw, with 428 downloads so far.

How do I install AI News Briefing?

Run "/install ai-news-briefing" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is AI News Briefing free?

Yes, AI News Briefing is completely free (open-source). You can download, install and use it at no cost.

Which platforms does AI News Briefing support?

AI News Briefing is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created AI News Briefing?

It is built and maintained by Gary.AI (@sharkwind); the current version is v1.0.1.

💬 Comments