Resources
6Install
npx skillscat add imoonkey/openweb/src-sites-guardian Install via the SkillsCat registry.
SKILL.md
The Guardian
Overview
Major UK/international news outlet. Open public REST API at content.guardianapis.com for searching articles, fetching full content, and browsing section feeds.
Workflows
Search for articles on a topic
searchArticles(q)→id, webTitle, sectionId, webPublicationDategetArticle(ids=id)→ fields.body, fields.headline, fields.byline
Browse latest news in a section
getSectionFeed(section)→id, webTitle, webPublicationDategetArticle(ids=id)→ full article body
Research a topic across sections
searchArticles(q, order-by: newest)→ recent coveragegetSectionFeed(section)→ compare coverage across sections
Operations
| Operation | Intent | Key Input | Key Output | Notes |
|---|---|---|---|---|
| searchArticles | find articles by keyword | q | id, webTitle, sectionId, webPublicationDate, fields | entry point, paginated |
| getArticle | full article content | ids <- searchArticles / getSectionFeed | fields.body, fields.headline, fields.byline | body is HTML |
| getSectionFeed | latest in a section | section | id, webTitle, webPublicationDate, fields | defaults to newest first |
Quick Start
# Search for articles
openweb guardian exec searchArticles '{"q": "artificial intelligence"}'
# Get a specific article (use id from search results)
openweb guardian exec getArticle '{"ids": "technology/2025/dec/10/police-facial-recognition-technology-bias"}'
# Get latest technology articles
openweb guardian exec getSectionFeed '{"section": "technology"}'
# Get latest world news
openweb guardian exec getSectionFeed '{"section": "world"}'