← All skills
Tencent SkillHub Β· Developer Tools

Naver news Search

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.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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.

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, scripts/search_news.py, references/api.md, examples/daily-summary.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

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

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

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

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: Fetches first page (e.g., 50 results) Applies date filter (e.g., 10 results remain) If below --min-results, automatically fetches next page 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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Docs1 Scripts
  • SKILL.md Primary doc
  • examples/daily-summary.md Docs
  • README.md Docs
  • references/api.md Docs
  • scripts/search_news.py Scripts