skills$openclaw/bbc-news
ddrayne459β˜…

by ddrayne

bbc-news – OpenClaw Skill

bbc-news is an OpenClaw Skills integration for coding workflows. Fetch and display BBC News stories from various sections and regions via RSS feeds. Use when the user asks for BBC news, UK news headlines, world news from BBC, or news from specific BBC sections (technology, business, politics, science, health, entertainment, regional UK news, or world regions).

459 stars4.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namebbc-news
descriptionFetch and display BBC News stories from various sections and regions via RSS feeds. Use when the user asks for BBC news, UK news headlines, world news from BBC, or news from specific BBC sections (technology, business, politics, science, health, entertainment, regional UK news, or world regions). OpenClaw Skills integration.
ownerddrayne
repositoryddrayne/bbc-news
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @ddrayne/bbc-news
last updatedFeb 7, 2026

Maintainer

ddrayne

ddrayne

Maintains bbc-news in the OpenClaw Skills directory.

View GitHub profile
File Explorer
7 files
.
references
feeds.md
1.7 KB
scripts
bbc_news.py
5.4 KB
_meta.json
269 B
README.md
1.8 KB
SKILL.md
2.2 KB
SKILL.md

name: bbc-news description: Fetch and display BBC News stories from various sections and regions via RSS feeds. Use when the user asks for BBC news, UK news headlines, world news from BBC, or news from specific BBC sections (technology, business, politics, science, health, entertainment, regional UK news, or world regions).

BBC News

Fetch top stories from BBC News across different sections and regions.

Quick Start

Fetch top stories:

python3 scripts/bbc_news.py

Fetch from specific section:

python3 scripts/bbc_news.py uk
python3 scripts/bbc_news.py world
python3 scripts/bbc_news.py technology

List all available sections:

python3 scripts/bbc_news.py --list

Available Sections

Main Sections

  • top - Top stories (default)
  • uk - UK news
  • world - World news
  • business - Business news
  • politics - Politics
  • health - Health news
  • education - Education
  • science - Science & Environment
  • technology - Technology news
  • entertainment - Entertainment & Arts

UK Regional

  • england - England news
  • scotland - Scotland news
  • wales - Wales news
  • northern-ireland - Northern Ireland news

World Regions

  • africa - Africa news
  • asia - Asia news
  • australia - Australia news
  • europe - Europe news
  • latin-america - Latin America news
  • middle-east - Middle East news
  • us-canada - US & Canada news

Options

Limit number of stories:

python3 scripts/bbc_news.py world --limit 5

JSON output:

python3 scripts/bbc_news.py technology --json

Examples

Get top 5 UK stories:

python3 scripts/bbc_news.py uk --limit 5

Get Scotland news in JSON:

python3 scripts/bbc_news.py scotland --json

Get latest technology headlines:

python3 scripts/bbc_news.py technology --limit 3

Dependencies

Requires feedparser:

pip3 install feedparser

Resources

scripts/bbc_news.py

Python CLI that fetches and displays BBC News stories from RSS feeds. Supports all major BBC sections and regions, with text and JSON output formats.

references/feeds.md

Complete list of BBC News RSS feed URLs organized by section and region.

README.md

BBC News Skill

A Clawdbot skill for fetching BBC News stories from various sections and regions via RSS feeds.

Features

  • πŸ“° Multiple Sections: Top stories, UK, World, Business, Politics, Health, Education, Science, Technology, Entertainment
  • 🌍 UK Regional News: England, Scotland, Wales, Northern Ireland
  • πŸ—ΊοΈ World Regions: Africa, Asia, Australia, Europe, Latin America, Middle East, US & Canada
  • πŸ“Š Flexible Output: Text or JSON format
  • βš™οΈ Customizable: Limit number of stories

Installation

Via ClawdHub

clawdhub install bbc-news

Manual Installation

# Clone the repo
git clone https://github.com/ddrayne/bbc-news-skill.git ~/.clawdbot/skills/bbc-news

# Install dependencies
pip3 install feedparser

Usage

With Clawdbot

Ask your agent:

  • "What's the latest BBC news?"
  • "Show me UK technology news from BBC"
  • "Get top 5 Scotland stories"

Direct Script Usage

# Top stories (default)
python3 ~/.clawdbot/skills/bbc-news/scripts/bbc_news.py

# Specific section
python3 ~/.clawdbot/skills/bbc-news/scripts/bbc_news.py technology

# Limit results
python3 ~/.clawdbot/skills/bbc-news/scripts/bbc_news.py uk --limit 5

# JSON output
python3 ~/.clawdbot/skills/bbc-news/scripts/bbc_news.py world --json

# List all sections
python3 ~/.clawdbot/skills/bbc-news/scripts/bbc_news.py --list

Available Sections

Main Sections

top, uk, world, business, politics, health, education, science, technology, entertainment

UK Regional

england, scotland, wales, northern-ireland

World Regions

africa, asia, australia, europe, latin-america, middle-east, us-canada

Dependencies

  • Python 3
  • feedparser (pip3 install feedparser)

License

MIT

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

Requires `feedparser`: ```bash pip3 install feedparser ```

FAQ

How do I install bbc-news?

Run openclaw add @ddrayne/bbc-news in your terminal. This installs bbc-news into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/ddrayne/bbc-news. Review commits and README documentation before installing.