# Cnn

> CNN

- Skill: `spike-faye-lei/cnn` (Agent Skill, multi-file: 9 files)
- Install (CLI): `npx skillmds@latest add spike-faye-lei/cnn`
- Raw SKILL.md: https://api.skillmd.com/api/skills/spike-faye-lei/cnn/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: spike-faye-lei (https://skillmd.com/u/spike-faye-lei)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/spike-faye-lei/cnn

---

# 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
1. `searchArticles(q)` → `title`, `url` (use as `slug`)
2. `getArticle(slug)` → `title`, `body`, `author`, `publishedAt`

### Browse top headlines then drill into a story
1. `getHeadlines` → `title`, `url` (strip leading `/` to get `slug`)
2. `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

```bash
# 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"}'
```

