Resources
5Install
npx skillscat add imoonkey/openweb/src-sites-bbc-news Install via the SkillsCat registry.
SKILL.md
BBC News
Overview
Global news — the BBC's public news service covering world, UK, business, technology, sport, and more.
Workflows
Browse headlines
getHeadlines→ top stories with title, description, url, topic
Read an article
getHeadlinesorsearchArticles(q)→url(containsarticleIdin path)getArticle(articleId)→title,body,publishedAt,byline,topics
Search news
searchArticles(q)→title,description,url
Browse by topic
getTopicFeed(topic)→title,description,url,topic
Operations
| Operation | Intent | Key Input | Key Output | Notes |
|---|---|---|---|---|
| getHeadlines | top stories | — | title, description, url, topic, isLive | entry point |
| getArticle | read full article | articleId <- getHeadlines/searchArticles url |
title, body, byline, publishedAt, topics | |
| searchArticles | search news | q | title, description, url | paginated |
| getTopicFeed | browse topic | topic | title, description, url, topic | world, business, innovation, culture, arts, travel |
Quick Start
# Get top headlines
openweb bbc-news exec getHeadlines '{}'
# Read a specific article (articleId from url path)
openweb bbc-news exec getArticle '{"articleId": "c62l597wl0yo"}'
# Search articles
openweb bbc-news exec searchArticles '{"q": "climate change"}'
# Get world news
openweb bbc-news exec getTopicFeed '{"topic": "world"}'