Awesome-openclaw-skills bbc-news
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).
git clone https://github.com/sundial-org/awesome-openclaw-skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/bbc-news" ~/.claude/skills/sundial-org-awesome-openclaw-skills-bbc-news && rm -rf "$T"
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/bbc-news" ~/.openclaw/skills/sundial-org-awesome-openclaw-skills-bbc-news && rm -rf "$T"
skills/bbc-news/SKILL.mdBBC 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 stories (default)top
- UK newsuk
- World newsworld
- Business newsbusiness
- Politicspolitics
- Health newshealth
- Educationeducation
- Science & Environmentscience
- Technology newstechnology
- Entertainment & Artsentertainment
UK Regional
- England newsengland
- Scotland newsscotland
- Wales newswales
- Northern Ireland newsnorthern-ireland
World Regions
- Africa newsafrica
- Asia newsasia
- Australia newsaustralia
- Europe newseurope
- Latin America newslatin-america
- Middle East newsmiddle-east
- US & Canada newsus-canada
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.