skills$openclaw/kimchi-premium
seungdols9.3k

by seungdols

kimchi-premium – OpenClaw Skill

kimchi-premium is an OpenClaw Skills integration for coding workflows. Calculate Bitcoin Kimchi Premium (Upbit vs Binance)

9.3k stars8.5k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namekimchi-premium
descriptionCalculate Bitcoin Kimchi Premium (Upbit vs Binance) OpenClaw Skills integration.
ownerseungdols
repositoryseungdols/kimchi-premium
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @seungdols/kimchi-premium
last updatedFeb 7, 2026

Maintainer

seungdols

seungdols

Maintains kimchi-premium in the OpenClaw Skills directory.

View GitHub profile
File Explorer
5 files
.
_meta.json
294 B
index.js
1.6 KB
package.json
711 B
README.md
1.9 KB
SKILL.md
368 B
SKILL.md

name: kimchi-premium version: 1.0.0 description: Calculate Bitcoin Kimchi Premium (Upbit vs Binance) author: seungdols

Kimchi Premium 🌶️

Calculates the real-time Kimchi Premium by comparing Bitcoin prices on Upbit (KRW) and Binance (USD).

Usage

Run the skill to see the current premium percentage and price difference.

node index.js
README.md

Kimchi Premium 🌶️

Calculate the real-time Bitcoin Kimchi Premium by comparing prices on Upbit (KRW) and Binance (USD).

What is Kimchi Premium?

The Kimchi Premium refers to the price difference of Bitcoin between South Korean cryptocurrency exchanges (like Upbit) and global exchanges (like Binance). When Korean prices are higher, it indicates strong local demand.

Features

  • 🚀 Real-time price comparison
  • 💱 Automatic USD/KRW exchange rate conversion
  • 📊 Premium percentage calculation
  • ⚡ Fast parallel API calls
  • 🎯 No dependencies (uses only Node.js built-ins)

Installation

git clone https://github.com/seungdols/kimchi-premium.git
cd kimchi-premium

Usage

As a standalone script

node index.js

As an OpenClaw skill

This skill is designed to work with OpenClaw (Claude Code).

Add this skill to your OpenClaw skills directory and run:

/kimchi-premium

Example Output

{
  "timestamp": "2/1/2026, 2:20:00 PM",
  "exchange_rate": "1,380 KRW/USD",
  "upbit_btc": "145,000,000 KRW",
  "binance_btc": "105,000 USD",
  "kimchi_premium": "0.15%",
  "price_diff": "217,000 KRW"
}

API Sources

Requirements

  • Node.js >= 14.0.0
  • Internet connection

How It Works

  1. Fetches current USD/KRW exchange rate
  2. Gets BTC price from Upbit (in KRW)
  3. Gets BTC price from Binance (in USD)
  4. Converts Binance price to KRW
  5. Calculates premium percentage and price difference

Error Handling

  • 5-second timeout for API calls
  • Graceful error messages in JSON format
  • Catches network and parsing errors

License

MIT

Author

seungdols

Contributing

Issues and pull requests are welcome!

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 kimchi-premium?

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