skills/okx-cex-skill-mp/SKILL.md
Use this skill when the user asks to: 'find a trading skill', 'search for skills', 'install a skill', 'add a skill', 'download a skill', 'browse skill marketplace', 'what skills are available', 'update a skill', 'check for skill updates', 'remove a skill', 'uninstall a skill', 'list installed skills', 'show my skills', 'skill categories', 'verify skill signature', 'verify installed skill', 're-verify a skill', 'check skill integrity', or any request to discover, install, update, verify, or manage AI trading skills from the OKX Skills Marketplace. This skill covers searching, browsing categories, installing via CLI, downloading zip packages, checking for updates, removing installed skills, and verifying Ed25519 signatures of installed skills. Requires API credentials for marketplace API access. Do NOT use for placing orders (use okx-cex-trade), market data (use okx-cex-market), or bot management (use okx-cex-bot).
npx skillsauth add okx/agent-skills okx-cex-skill-mpInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Browse, search, install, and manage AI trading skills from the OKX Skills Marketplace. Skills are modular AI prompt packages that extend your trading assistant's capabilities — covering market analysis, trade execution, risk management, and portfolio optimization.
⚠️ Third-Party Content Notice Skills available on the OKX Skills Marketplace are created and published by independent third-party developers, not by OKX. OKX does not author, review, endorse, or take responsibility for the content, accuracy, or behavior of any third-party skill. Always review a skill's SKILL.md before use, and only install skills from authors you trust. When a skill is installed via
okx skill add, it is downloaded from the marketplace and saved locally to your agent's skill directory (e.g.,~/.agents/skills/<skill-name>/). The skill runs entirely on your local machine with your agent's full permissions — treat it with the same caution as installing any third-party software.
Skill routing
okx-cex-skill-mp (this skill)okx-cex-marketokx-cex-portfoliookx-cex-tradeokx-cex-botokx CLI:
npm install -g @okx_ai/okx-trade-cli
okx config init
When the user wants to install a skill, follow this order strictly:
okx skill add <name> first — this downloads the skill and installs it to all detected agents (Claude Code, OpenClaw, Cursor, Windsurf, etc.) in one step.add fails, fall back to manual download:
add failed (network error, npx unavailable, permission issue, etc.)okx skill download <name> --dir <path> as an alternativeNever skip add and go straight to download unless add has already failed.
| # | Command | Description |
|---|---------|-------------|
| 1 | okx skill search <keyword> | Search marketplace by keyword |
| 2 | okx skill search --categories <id> | Filter skills by category |
| 3 | okx skill categories | List all available categories |
| 4 | okx skill add <name> | Download + install to all detected agents |
| 5 | okx skill download <name> [--dir <path>] [--format zip\|skill] | Download package (default format: zip) |
| 6 | okx skill list | List locally installed skills |
| 7 | okx skill check <name> | Check if a newer version is available |
| 8 | okx skill remove <name> | Uninstall a skill |
| 9 | okx skill verify <name> | Re-verify an installed skill's signature on demand |
Add --json to any command for raw JSON output. Add --env to wrap the output as {"env", "profile", "data"}.
okx skill search grid
Output:
NAME VERSION DESCRIPTION
grid-premium 1.2.0 Enhanced grid trading with technical analysis
grid-dca 1.0.0 Grid strategy combined with DCA
2 skills found (page 1/1). Use `okx skill add <name>` to install.
Search with category filter:
okx skill search --categories trading-strategy
Pagination (response includes totalPage for total pages):
okx skill search grid --page 2 --limit 5
# Output: "3 skills found (page 2/4). Use `okx skill add <name>` to install."
okx skill categories
Output:
ID NAME
trading-strategy Trading Strategy
risk-management Risk Management
analysis Market Analysis
okx skill add grid-premium
Output:
Downloading grid-premium...
Verifying signature...
Signature verified (key: okx-skill-signing-key-2026, files: 3)
Installing to detected agents...
✓ Skill "grid-premium" v1.2.0 installed
Note: This skill was created by a third-party developer, not by OKX. Review SKILL.md before use.
What happens under the hood:
npx skills add to install to all locally detected agents~/.okx/skills/registry.jsonForce-install (bypass verification):
okx skill add grid-premium --force
⚠️ Security warning:
--forcebypasses signature verification and installs the skill even if verification fails. Only use this if you trust the source and understand the risk. The bypass is recorded in the registry with statusbypassed.
When add fails or the user wants the raw package:
okx skill download grid-premium --dir ~/Downloads/
Output:
✓ Downloaded grid-premium.zip
Path: /Users/me/Downloads/grid-premium.zip
To download as .skill format (for agents that recognize the extension):
okx skill download grid-premium --dir ~/Downloads/ --format skill
The zip contains:
SKILL.md — the skill's main instruction file_meta.json — metadata (name, version, title, description)reference/ — optional supporting documentsokx skill list
Output:
NAME VERSION INSTALLED AT
grid-premium 1.2.0 2026-03-25 10:30:00
dca-smart 2.1.0 2026-03-20 14:00:00
2 skills installed.
okx skill check grid-premium
Output:
grid-premium: installed v1.0.0 → latest v1.2.0 (update available)
Use `okx skill add grid-premium` to update.
To update, simply run okx skill add <name> again — it overwrites the previous version.
okx skill remove grid-premium
Output:
✓ Skill "grid-premium" removed
Re-run signature verification on an already-installed skill without reinstalling it:
okx skill verify grid-premium
Output (success):
✓ grid-premium: signature verified (key: okx-skill-signing-key-2026, files: 3)
Output (failure):
✗ grid-premium: verification failed — Invalid signature
1 on failure.~/.okx/skills/registry.json.--json for machine-readable output.When the CLI is unavailable (e.g., Claude Desktop without terminal access), the same marketplace functionality is available via MCP tools:
| MCP Tool | Equivalent CLI | Description |
|----------|---------------|-------------|
| skills_search | okx skill search | Search by keyword/category. Response includes totalPage for pagination. |
| skills_get_categories | okx skill categories | List categories |
| skills_download | okx skill download | Download package to directory (default format: .skill; pass format: "zip" for zip) |
Note: MCP tools only support search and download. The full install flow (add) requires CLI access.
| Error | Meaning | Action |
|-------|---------|--------|
| 70002 SKILL_DELETED | Skill has been removed from marketplace | Choose a different skill |
| 70003 NO_APPROVED_VERSION | No approved version available | Skill is pending review, try later |
| 70030 VERSION_NOT_APPROVED | Version not yet approved for download | Wait for review or use an older version |
| 50111/50112/50113 | Authentication error | Run okx config init to set up credentials |
| npx skills add fails | npx not available or network issue | Use okx skill download instead, then manually install |
documentation
Use this skill for OKX Outcomes markets (YES/NO event contracts, formerly OKX Predictions) via the okx-outcomes binary. Triggers: 'list prediction events', '预测市场', 'event detail', 'place prediction order', '预测下单', 'buy YES', 'buy NO', '撤单 预测', 'split xp', '拆分 xp', 'merge YES NO', '赎回 预测', 'prediction positions', '预测持仓', 'live prediction price', '预测行情', 'OHLCV candles', 'K线', 'CTF', 'polymarket'. Auth: OAuth sign-in via 'okx outcomes auth login'; writes need a signing key configured by 'okx outcomes setup'. Do NOT use for OKX CEX event contracts (use okx-cex-trade event), spot/swap/futures (okx-cex-trade), crypto market data (okx-cex-market), or CEX portfolio (okx-cex-portfolio). Namespace required: account: balance/positions/order/orders/trades; clob: price/prices/midpoint/midpoints/spread/spreads/book/books; data: events/event/event-markets/market/trending/ticker/candles; ctf: split/merge/redeem; wallet: show; auth: login/refresh/status; setup: status/region/bind.
documentation
Automatically monitors OKX Flash Earn, Fixed Earn and Flexible Earn opportunities, sends push notifications, and guides subscription. 自动监控 OKX 闪赚、定期和活期赚币机会,推送通知并引导申购。Use when user says: 有闪赚通知我, 监控赚币, monitor earn, notify me about earn, 定时检查理财, 执行 earn-hunter 扫描, earn-hunter scan, 活期年化高了通知我, 监控活期.
development
Smart Money analytics on OKX: leaderboard traders, position tracking, trade records, closed-position history, aggregated consensus signals, and signal history. Use this skill when the user asks about 聪明钱, smart money, 牛人榜, leaderboard, top traders, 交易员排行, trader ranking, trader positions, trader PnL, 交易员持仓, 交易员收益, 历史平仓, closed positions, realized PnL track record, trade history, 成交记录, smart money signal, 聪明钱信号, long/short ratio, 多空比, capital flow, 资金流向, position conviction, 仓位强度, entry price distribution, smart money overview, 聪明钱总览, signal history, 信号历史, trader search, 搜索交易员, who is trading BTC, 谁在交易BTC, recommend traders, 推荐交易员, best traders, top performers.
tools
Use this skill when the user wants to 'login/log in/sign in', 'authenticate', 'authorize', 'connect OKX account', 'set up credentials', 'first time setup', 'configure okx', '登录', '授权', '认证', '连接账户', '首次配置'. Also when any OKX CLI command fails with an auth error: 'Run okx auth login first', 'Session expired', 'not authenticated', 'requires_auth', '401 Unauthorized', 'token expired/not found', 'StorageNotFoundError', '会话过期', '未认证', '需要登录'. Also when the user asks about login status or the login was interrupted. Also when the user wants to install/update/check/remove the okx-auth binary — 'install/update/remove auth', 'download okx-auth', '安装/更新/卸载认证', 'auth binary status', 'Failed to spawn okx-auth'. Also use before using okx-cex-trade/portfolio/earn/bot for the first time. Do NOT use for market data queries (use okx-cex-market).