Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

global-news全球新闻

Agent Skill

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

总安装

7,956

周安装

325

GitHub Stars

1

下载量

2,548
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install global-news

简介

获取全球突发新闻、头条与城市级资讯,支持全文搜索功能。

  • 适用于舆情监控、市场洞察与内容聚合应用场景。
  • 通过 clawhub 安装,依赖多语种新闻源与实时更新机制。
  • 输出结构化摘要与来源标注,便于信息追踪。global-news 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 建议核实新闻时效性与媒体立场以避免误读。

SKILL.md

name
global-news
description
Stay informed with Global News — get breaking news, top headlines, local city news, and full-text article search across Europe, Americas, Latin America, and Africa.
triggers

Global News

About

Global News developed by Opera News.

Get up-to-date with the latest news from around the world! Global News delivers breaking news, headlines, and trending stories from dozens of countries — keeping you informed about the events that shape your community and the globe.

From live local news and daily briefings to international affairs, sports, politics, business, and weather alerts, Global News has you covered wherever you are and whatever you care about.

For more news, you can access https://www.operanewsapp.com

API Base URL

https://news-af.feednews.com/{country}/{language}/v1/mcp/news

Markets: Europe (e.g. de/de, fr/fr, gb/en), Americas (us/en), Latin America (br/pt, mx/es, ar/es), Africa (ng/en, za/en, ke/en)

Available Tools

1. get_global_top_news (PRIMARY — Use this for general news requests)

Best for: Daily briefings, "what's happening today", top headlines for a country

API Call Example:

curl -X GET "https://news-af.feednews.com/us/en/v1/mcp/news/top_news?request_count=10&product=openclaw"

Parameters:

  • country: Market country code, e.g. us, ng, de, br
  • language: Language code, e.g. en, de, pt, es
  • request_count (optional): Number of articles to return (default: 30)
  • product: Always pass openclaw

Response: JSON with articles array, each containing:

  • title: Article headline
  • summary: Short excerpt of the article
  • thumbnail: Array of image URLs (may be empty)
  • transcoded_url: Link to the full article

2. get_global_local_news

Best for: City-specific news, local events, community stories for a given city

API Call Example:

curl -X GET "https://news-af.feednews.com/us/en/v1/mcp/news/localnews?query=New%20York&product=openclaw"

Parameters:

  • country: Market country code
  • language: Language code
  • query: City name. URL-encode spaces and special characters (e.g. New YorkNew%20York). Required — returns 400 if missing, 404 if city is not recognised.
  • product: Always pass openclaw

Response: Same structure as get_global_top_news, articles are local to the specified city.


3. search_global_news

Best for: Topic-specific queries, answering "what happened with X", exploring a subject in depth

API Call Example:

curl -X GET "https://news-af.feednews.com/us/en/v1/mcp/news/search?query=election&page_size=10&product=openclaw"

Parameters:

  • country: Market country code
  • language: Language code
  • query: Search keyword(s). URL-encode spaces and special characters (e.g. nigeria electionnigeria%20election). Required — returns 400 if missing or empty.
  • page_size (optional): Number of articles per page (default: 9)
  • page_no (optional): Zero-based page index for pagination (default: 0)
  • product: Always pass openclaw

Response: Same structure as get_global_top_news


4. search_hot_videos

Best for: Finding trending or viral videos on a specific keyword or topic

API Call Example:

curl -X GET "https://news-af.feednews.com/$country/$language/clip/v1/video/search/hot?days=2&keyword=trump&size=5" \
  --header "country: $country" \
  --header "language: $language"

Parameters:

  • country: Market country code, e.g. us, ng, de, br (path parameter only)
  • language: Language code, e.g. en, de, pt, es (path parameter only)
  • days (optional): Look-back window in days (default: 2)
  • keyword: Search keyword(s). Required — the topic or person to search for
  • size (optional): Number of videos to return (default: 5)

Headers:

  • country: Same as the country path parameter
  • language: Same as the language path parameter

Response: JSON with content array, each item containing:

  • id: Video ID
  • description: Video title / caption
  • thumbnail.url: Thumbnail image URL
  • video.duration: Duration in seconds
  • video.share_url: Share link for the video
  • page_info.has_more: Whether more results are available

Workflow

Step 1: Detect Market

  • Infer country and language from the user's location, language, or explicit mention
  • Default to us/en if unclear

Step 2: Choose Tool

  • get_global_top_news: User wants general headlines or a daily briefing
  • get_global_local_news: User asks about news in a specific city
  • search_global_news: User asks about a specific topic or event

Step 3: Make API Call

Use the Bash tool to call the HTTP API.

Step 4: Format Results

Present articles in a clean, readable format:

### 📰 Top News — {Country}, {Date}

**1. {Title}**
{Summary}
🔗 [Read more]({transcoded_url})

**2. {Title}**
...

Example Interactions

Example 1: Daily Briefing

User: What's the news today in the US?
Assistant: Let me fetch today's top headlines for the US.

[Calls get_global_top_news: country=us, language=en, request_count=5]

### 📰 Top Headlines — United States

**1. Congress Reaches Budget Deal After Weeks of Negotiations**
Lawmakers have agreed on a spending framework to avoid a government shutdown...
🔗 [Read more](https://...)

**2. Tech Giants Report Strong Q1 Earnings**
Major technology companies posted better-than-expected quarterly results...
🔗 [Read more](https://...)

**3. Severe Storm Warning Issued Across the Midwest**
Forecasters are warning residents to prepare as a major storm system approaches...
🔗 [Read more](https://...)

Example 2: Local City News

User: What's happening in Lagos today?
Assistant: Let me get the latest local news for Lagos.

[Calls get_global_local_news: country=ng, language=en, query=Lagos]

### 📰 Lagos Local News

**1. Lagos State Launches New Traffic Management Initiative**
Authorities unveiled a new plan to ease congestion on major roads in the city...
🔗 [Read more](https://...)

**2. Heavy Rainfall Causes Flooding in Parts of Lagos Island**
Residents in low-lying areas are advised to stay indoors as waters rise...
🔗 [Read more](https://...)

Example 3: Topic Search

User: What's happening with the elections in Nigeria?
Assistant: Let me search for the latest news on Nigeria elections.

[Calls search_global_news: country=ng, language=en, query=elections, page_size=5]

### 📰 Nigeria Election News

**1. Election Commission Announces Voter Registration Deadline**
Nigeria's INEC has set a new deadline for voter registration ahead of upcoming polls...
🔗 [Read more](https://...)

**2. Presidential Candidates Hold Final Debate**
The three main candidates faced off in a televised debate focused on economic policy...
🔗 [Read more](https://...)

Tips for Best Results

1. When to Use Each Tool

ToolBest For
get_global_top_newsGeneral briefing, "what's the news today"
get_global_local_newsCity-specific news, local events
search_global_newsSpecific topic, event, or keyword query

2. Response Formatting Best Practices

  • Show 5–10 articles for briefings, 3–5 for specific searches
  • Always include the 🔗 Read more link using transcoded_url
  • Skip articles where transcoded_url is empty
  • Use summary as the article excerpt; omit if empty

Important Notes

  1. Always call the API via Bash tool — use curl GET requests
  2. Always include product=openclaw in every request
  3. URL-encode query — spaces become %20 (applies to both search and local news)
  4. deeplink_url is reserved and always empty — do not expose to users
  5. Results are pre-filtered for quality and safety — safe to display directly
  6. Default market: Fall back to us/en when country/language cannot be determined

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

73.74%
按下载量换算1,879

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills