9b395f5cc3
Build Chrome Extension / build (push) Waiting to run
Trigger Website Rebuild (Docs Updated) / dispatch (push) Waiting to run
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
55 lines
1.3 KiB
Markdown
55 lines
1.3 KiB
Markdown
# BBC News
|
|
|
|
**Mode**: 🌐 Public · **Domain**: `bbc.com`
|
|
|
|
## Commands
|
|
|
|
| Command | Description |
|
|
|---------|-------------|
|
|
| `opencli bbc news` | Latest BBC News headlines (top stories) |
|
|
| `opencli bbc topic <topic>` | Latest headlines for a single BBC topic feed |
|
|
|
|
## Usage Examples
|
|
|
|
```bash
|
|
# Top stories
|
|
opencli bbc news --limit 5
|
|
|
|
# Topic-scoped feeds (RSS at feeds.bbci.co.uk/news/<topic>/rss.xml)
|
|
opencli bbc topic technology --limit 10
|
|
opencli bbc topic world --limit 20
|
|
opencli bbc topic business
|
|
opencli bbc topic science_and_environment
|
|
|
|
# JSON output
|
|
opencli bbc topic technology -f json
|
|
```
|
|
|
|
## Topics
|
|
|
|
Valid `<topic>` values:
|
|
|
|
| Topic slug | Feed |
|
|
|------------|------|
|
|
| `world` | World news |
|
|
| `business` | Business |
|
|
| `politics` | UK politics |
|
|
| `health` | Health |
|
|
| `education` | Education & family |
|
|
| `science_and_environment` | Science & environment |
|
|
| `technology` | Technology |
|
|
| `entertainment_and_arts` | Entertainment & arts |
|
|
|
|
Pass any other value and the adapter raises `ArgumentError` with the full list.
|
|
|
|
## Output Columns
|
|
|
|
| Command | Columns |
|
|
|---------|---------|
|
|
| `news` | (see existing news row schema) |
|
|
| `topic` | `rank, title, description, pubDate, url` |
|
|
|
|
## Prerequisites
|
|
|
|
- No browser required — uses the public BBC RSS feeds at `feeds.bbci.co.uk`.
|