skills$openclaw/naver-stock
seungdols8.8kβ˜…

by seungdols

naver-stock – OpenClaw Skill

naver-stock is an OpenClaw Skills integration for coding workflows. Fetch text-based real-time stock prices (KRX, Overseas) using Naver Finance.

8.8k stars9.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namenaver-stock
descriptionFetch text-based real-time stock prices (KRX, Overseas) using Naver Finance. OpenClaw Skills integration.
ownerseungdols
repositoryseungdols/naverstock-skill
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @seungdols/naverstock-skill
last updatedFeb 7, 2026

Maintainer

seungdols

seungdols

Maintains naver-stock in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
460 B
index.cjs
32.8 KB
SKILL.md
1.7 KB
SKILL.md

Naver Stock

Fetch real-time stock prices for domestic (KRX) and overseas markets using Naver Finance.

Usage

Run the bundled script with a stock name or code.

node index.cjs "μ‚Όμ„±μ „μž"
node index.cjs "AAPL"

Output Format

Returns a JSON object with price details.

{
  "name": "μ‚Όμ„±μ „μž",
  "code": "005930",
  "price": 160500,
  "change": -200,
  "changePercent": -0.12,
  "nxtPrice": 160800,
  "nxtChange": 100,
  "nxtChangePercent": 0.06,
  "currency": "KRW"
}

Field Descriptions

  • name: Stock name.
  • code: Stock symbol/code.
  • price: Current price in regular market.
  • change: Price change in regular market.
  • changePercent: Percentage change in regular market.
  • nxtPrice: Current price in Nextrade (NXT) Alternative Trading System.
  • nxtChange: Price change in Nextrade.
  • nxtChangePercent: Percentage change in Nextrade.
  • currency: Currency code (e.g., KRW, USD).

About Nextrade (NXT)

Nextrade is an Alternative Trading System (ATS) in Korea that offers extended trading hours.

  • Pre-market: 08:00 ~ 08:50
  • After-market: 15:30 ~ 20:00 (Can be traded until 8 PM)
  • Note: Prices in Nextrade (nxtPrice) may differ from the regular KRX market price, providing off-hours trading opportunities.

Examples

Domestic Stock

node index.cjs 005930

Overseas Stock

node index.cjs "Tesla"

Exchange Rate

node index.cjs "USD"
node index.cjs "μ—”"
README.md

No README available.

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-stock?

Run openclaw add @seungdols/naverstock-skill in your terminal. This installs naver-stock 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/seungdols/naverstock-skill. Review commits and README documentation before installing.