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.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install naver-news或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install naver-news⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/naver-news/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: naver-news description: 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. homepage: https://developers.naver.com/docs/serviceapi/search/news/news.md metadata: {"openclaw":{"emoji":"📰","requires":{"bins":["python3"],"env":["NAVER_CLIENT_ID","NAVER_CLIENT_SECRET"]}}} ---
Search Korean news articles using the Naver Search API.
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
Required credentials from https://developers.naver.com/:
NAVER_CLIENT_ID=your_client_id
NAVER_CLIENT_SECRET=your_client_secret
Configuration locations:
agents.defaults.sandbox.docker.env in OpenClaw config
env.vars in OpenClaw config
python scripts/search_news.py "AI 인공지능" --display 20 --sort date
python scripts/search_news.py "삼성전자" --sort sim
# 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')"
# 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:
--min-results, automatically fetches next page
--max-pages limit hit
# First 10 results
python scripts/search_news.py "경제" --display 10 --start 1
# Next 10 results
python scripts/search_news.py "경제" --display 10 --start 11
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"])
For complete API reference including response structure, error codes, and rate limits, see:
tags around search term matches (strip them for clean text)
link field may point to Naver News or original source depending on availability安装 Naver news Search 后,可以对 AI 说这些话来触发它
Help me get started with Naver news Search
Explains what Naver news Search does, walks through the setup, and runs a quick demo based on your current project
Use Naver news Search to search Korean news articles using Naver Search API
Invokes Naver news Search with the right parameters and returns the result directly in the conversation
What can I do with Naver news Search in my data & analytics workflow?
Lists the top use cases for Naver news Search, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/naver-news/ 目录(个人级,所有项目可用),或 .claude/skills/naver-news/(项目级)。重启 AI 客户端后,用 /naver-news 主动调用,或让 AI 根据上下文自动发现并使用。
Naver news Search 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
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.
Naver news Search 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my data & analytics tasks using Naver news Search
Identifies repetitive steps in your workflow and sets up Naver news Search to handle them automatically