459β
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).
Skill Snapshot
| 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). OpenClaw Skills integration. |
| owner | ddrayne |
| repository | ddrayne/bbc-news |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @ddrayne/bbc-news |
| last updated | Feb 7, 2026 |
Maintainer

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 newsworld- World newsbusiness- Business newspolitics- Politicshealth- Health newseducation- Educationscience- Science & Environmenttechnology- Technology newsentertainment- Entertainment & Arts
UK Regional
england- England newsscotland- Scotland newswales- Wales newsnorthern-ireland- Northern Ireland news
World Regions
africa- Africa newsasia- Asia newsaustralia- Australia newseurope- Europe newslatin-america- Latin America newsmiddle-east- Middle East newsus-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.
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.
