Resources
6Install
npx skillscat add imoonkey/openweb/src-sites-cnn Install via the SkillsCat registry.
SKILL.md
CNN
Overview
Major US cable news network. CNN.com provides breaking news, analysis, and video content across politics, world, business, health, entertainment, and more.
Workflows
Search and read an article
searchArticles(q)→title,url(use asslug)getArticle(slug)→title,body,author,publishedAt
Browse top headlines then drill into a story
getHeadlines→title,url(strip leading/to getslug)getArticle(slug)→title,body,author,publishedAt,section
Operations
| Operation | Intent | Key Input | Key Output | Notes |
|---|---|---|---|---|
| getHeadlines | top stories / front page | — | title, url, contentType | entry point, ~75 items |
| getArticle | full article content | slug <- getHeadlines/searchArticles url |
title, body, author, publishedAt, section | body is plain text via LD+JSON |
| searchArticles | find articles by keyword | q | title, url, description, date | paginated, ~10 per page |
Quick Start
# Get front-page headlines
openweb cnn exec getHeadlines '{}'
# Get a specific article (use slug from headlines or search)
openweb cnn exec getArticle '{"slug": "2026/04/07/weather/super-el-nino-extreme-weather-climate-disaster"}'
# Search for articles
openweb cnn exec searchArticles '{"q": "climate change"}'