skills$openclaw/naver-news
steamb234.2k

by steamb23

naver-news – OpenClaw Skill

naver-news is an OpenClaw Skills integration for coding workflows. Search Korean news articles using Naver Search API. Use when searching for Korean news, getting latest news updates, finding news about specific topics, or preparing daily news summaries. Supports relevance and date-based sorting.

4.2k stars1.4k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namenaver-news
descriptionSearch Korean news articles using Naver Search API. Use when searching for Korean news, getting latest news updates, finding news about specific topics, or preparing daily news summaries. Supports relevance and date-based sorting. OpenClaw Skills integration.
ownersteamb23
repositorysteamb23/naver-news
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @steamb23/naver-news
last updatedFeb 7, 2026

Maintainer

steamb23

steamb23

Maintains naver-news in the OpenClaw Skills directory.

View GitHub profile
File Explorer
9 files
.
examples
daily-summary.md
5.5 KB
references
api.md
2.4 KB
scripts
search_news.py
7.6 KB
_meta.json
459 B
README.md
1.6 KB
SKILL.md
4.0 KB
SKILL.md

Naver News Search

Search Korean news articles using the Naver Search API.

Quick Start

Use the provided script to search news:

python scripts/search_news.py "검색어" --display 10 --sort date

Options:

  • --display N: Number of results per page (1-100, default: 10)
  • --start N: Start position for pagination (1-1000, default: 1)
  • --sort sim|date: Sort by relevance (sim) or date (date, default: date)
  • --after DATETIME: Only show news published after this time (ISO 8601 format, e.g., 2026-01-29T09:00:00+09:00)
  • --min-results N: Minimum number of results to fetch (enables auto-pagination)
  • --max-pages N: Maximum number of pages to try when auto-paginating (default: 5)
  • --json: Output raw JSON instead of formatted text

Setup

Environment Variables

Required credentials from https://developers.naver.com/:

NAVER_CLIENT_ID=your_client_id
NAVER_CLIENT_SECRET=your_client_secret

Configuration locations:

  • Sandbox (default): Add to agents.defaults.sandbox.docker.env in OpenClaw config
  • Host: Add to env.vars in OpenClaw config

Getting API Credentials

  1. Visit https://developers.naver.com/
  2. Register an application
  3. Enable "검색" (Search) API
  4. Copy Client ID and Client Secret
  5. Add credentials to appropriate config section (see above)

Common Use Cases

Latest news on a topic

python scripts/search_news.py "AI 인공지능" --display 20 --sort date

Search with relevance ranking

python scripts/search_news.py "삼성전자" --sort sim

Filter by time (only recent news)

# News published after 9 AM today
python scripts/search_news.py "경제" --display 50 --sort sim --after "2026-01-29T09:00:00+09:00"

# News from the last hour (programmatic use)
python scripts/search_news.py "속보" --after "$(date -u -d '1 hour ago' '+%Y-%m-%dT%H:%M:%S%z')"

Auto-pagination for guaranteed minimum results

# Fetch at least 30 results (automatically requests multiple pages if needed)
python scripts/search_news.py "AI" --sort sim --after "2026-01-29T09:00:00+09:00" --min-results 30 --display 50

# Limit to 3 pages maximum
python scripts/search_news.py "게임" --min-results 50 --max-pages 3

How auto-pagination works:

  1. Fetches first page (e.g., 50 results)
  2. Applies date filter (e.g., 10 results remain)
  3. If below --min-results, automatically fetches next page
  4. Stops when minimum is reached or --max-pages limit hit

Pagination for more results

# First 10 results
python scripts/search_news.py "경제" --display 10 --start 1

# Next 10 results
python scripts/search_news.py "경제" --display 10 --start 11

Using in Python Code

Import and use the search function directly:

from scripts.search_news import search_news

result = search_news(
    query="경제 뉴스",
    display=10,
    sort="date"
)

for item in result["items"]:
    print(item["title"])
    print(item["description"])
    print(item["link"])

API Details

For complete API reference including response structure, error codes, and rate limits, see:

references/api.md

Notes

  • Search queries must be UTF-8 encoded
  • Results include <b> tags around search term matches (strip them for clean text)
  • Daily limit: 25,000 API calls per application
  • link field may point to Naver News or original source depending on availability
README.md

Search Korean news articles using the Naver Search API.

What is this?

This skill enables OpenClaw agents to search, filter, and collect Korean news articles from Naver News. It's designed for building automated workflows like daily news summaries, topic monitoring, and news aggregation.

Key Capabilities

  • Search news by keywords with relevance or date-based sorting
  • Filter articles by publication time to avoid duplicates
  • Auto-pagination to ensure sufficient results
  • JSON output for easy integration with automation systems
  • Support for up to 25,000 API calls per day

Use Cases

  • Daily news summaries: Automatically collect and curate news across multiple topics
  • Topic monitoring: Track specific subjects with time-based filtering
  • Breaking news alerts: Monitor recent articles in near real-time
  • Custom news feeds: Aggregate news for specific interests

Documentation

Getting Started

See SKILL.md for setup instructions, API credentials, and detailed usage examples.

Real-World Example

The examples/daily-summary.md document shows a complete production workflow that collects 100+ articles, filters by time, selects top stories using priority criteria, and formats them as a daily summary. This is the actual workflow used for automated morning news digests.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install naver-news?

Run openclaw add @steamb23/naver-news in your terminal. This installs naver-news into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/steamb23/naver-news. Review commits and README documentation before installing.