Install
openclaw skills install @terrycarter1985/news-briefGenerate structured daily news briefs by searching and summarizing latest public information on any topic. Supports tech news, policy updates, and custom topics.
openclaw skills install @terrycarter1985/news-briefGenerate structured daily news briefs from the web. Search for latest news, fetch article previews, and compile into a professional brief with curated sections.
✅ USE this skill when:
news-brief tech or web_search: tech news latest developmentsnews-brief policy or web_search: policy regulations changes for [industry]news-brief custom [topic] or web_search: [topic] news latestEach briefing includes:
This skill uses the web_search and web_fetch tools to:
web_search to find latest public information on the specified topicweb_fetch to extract readable content from key articlesUser: Give me the latest tech news briefing
Assistant executes:
web_search(query="global technology news latest today 2026", count=10)
web_fetch(url="https://example.com/article1")
web_fetch(url="https://example.com/article2")
Then formats results into structured brief.
User: What's the latest policy on semiconductor manufacturing?
Assistant executes:
web_search(query="semiconductor manufacturing policy regulations today 2026", count=10)
Then formats results into structured brief.
# 📰 [Brief Title]
---
## Overview
[2-3 sentences summarizing key developments]
## 📋 Top Headlines
1. **[Headline 1]**
- Source: [URL]
- Summary: [2-3 sentences]
2. **[Headline 2]**
- Source: [URL]
- Summary: [2-3 sentences]
## 🔑 Key Highlights
• [Highlight 1]
• [Highlight 2]
• [Highlight 3]
## 🔥 Trending Topics
• [Trend 1]
• [Trend 2]
• [Trend 3]
## 🔗 Sources
- [Source URL 1]
- [Source URL 2]
- [Source URL 3]
Helper script that demonstrates how to structure search queries and output format.
Run directly for guidance:
python3 scripts/news_brief.py tech
python3 scripts/news_brief.py policy
python3 scripts/news_brief.py custom "climate tech"