Remote OpenClaw
Menu
SkillsMarketplaceGuideAgentsAdvertise
Remote OpenClaw
SkillsMarketplaceGuideAgentsAdvertise
Skills/starchild-ai-agent/official-skills/okx

okx

starchild-ai-agent/official-skills
687 installs17 stars

Installation

npx skills add https://github.com/starchild-ai-agent/official-skills --skill okx

Summary

|

SKILL.md

OKX OnChainOS — Skills Directory

What this file is: a directory page that points to OKX's official onchainos-skills repo. It contains no logic of its own — every sub-skill below lives upstream at okx/onchainos-skills and is fetched fresh on install, so you always get the latest version.

OKX OnChainOS is a suite of 22 specialized sub-skills covering on-chain trading, market analytics, smart-money signals, DeFi investing & positions, cross-chain bridging, wallet ops, security scanning, payment protocols, and real-time data streams across 20+ blockchains (Ethereum, Solana, XLayer, Base, BSC, Arbitrum, Polygon, Optimism, Avalanche, TRON, …).

Most sub-skills drive a single binary, onchainos, which is downloaded on first use. A subset of capabilities (read-only data) can also be accessed without the binary, via Starchild's sc-proxy — see Authentication options below.

---

How install actually works

# Install one sub-skill (recommended — pulls just what you need)
npx skills add okx/onchainos-skills@<sub-skill-name>

# Or via long form
npx skills add https://github.com/okx/onchainos-skills --skill <sub-skill-name>

There is no batched "install all" — install the sub-skills you actually need. Each sub-skill ships its own SKILL.md + reference docs + trigger phrases.

---

Wallet — default to the user's Agent Wallet

Use the platform wallet skill for signing and broadcasting. OKX DEX endpoints return unsigned calldata ({to, value, data, ...}); feed it to wallet_transfer(data=<calldata>) and you're done. No separate OKX wallet needed.

Only use the OnchainOS TEE wallet (onchainos wallet login <email>) when the user explicitly asks for it.

---

Authentication options (read this before invoking anything)

There are two distinct paths. Pick based on what the agent needs to do:

Path A — Direct HTTP via Starchild sc-proxy (no API Key needed)

For read-only data lookups (prices, K-line, smart-money signals, token analytics, security checks, public-address portfolios — ≈ 80 % of OnchainOS capabilities), the agent can skip the CLI entirely and call https://web3.okx.com/... directly through sc-proxy:

from core.http_client import proxied_get
r = proxied_get(
    "https://web3.okx.com/api/v6/dex/aggregator/supported/chain",
    headers={"SC-CALLER-ID": f"chat:{thread_id}"},
)

sc-proxy auto-injects platform OKX credentials, signs each request with HMAC-SHA256, and bills the caller's Starchild credits.

  • Cost: $0.001 / request
  • Rate limit: 60 req/min
  • Setup: none
  • Limits: data only — cannot send transactions or manage wallets

Path B — onchainos CLI with your own OKX Web3 API Key

For wallet ops (wallet login, wallet send, wallet contract-call), DEX swaps that need execution, cross-chain bridges, strategy orders, payments, and any other CLI-driven workflow, the user must bring their own credentials:

  1. Apply at web3.okx.com → Build → Dev Portal
  2. Set env vars:
   export OKX_API_KEY=<your key>
   export OKX_SECRET_KEY=<your secret>
   export OKX_PASSPHRASE=<your passphrase>
  1. Run any sub-skill's CLI commands.

Why the CLI can't use sc-proxy

The onchainos binary uses Rust's rustls TLS stack with bundled webpki-roots — a compile-time copy of the Mozilla root CA list. It ignores the system trust store, ignores SSL_CERT_FILE, and has no documented env override. As a result, sc-proxy's MITM CA is rejected as UnknownIssuer, and the CLI cannot be transparently proxied. Path A (direct HTTP from agent scripts) is the only way to use platform credentials with OnchainOS today.

Wallet creation (onchainos wallet login <email>) gives you a fresh TEE-managed account — it does NOT import your existing OKX App / extension wallet.

---

Sub-skills by category

📊 Discovery & Market Data (8)

Sub-skillUse for
okx-dex-marketReal-time prices, K-line / OHLC, index price, wallet PnL, address tracker
okx-dex-tokenToken search, holder distribution (whales / smart money / snipers), top traders, cluster analysis, honeypot/rug checks
okx-dex-signalSmart-money / whale / KOL buy signals, top-trader leaderboards
okx-dex-trenchesMeme launchpad scanning (pump.fun, BSC, X Layer, TRON), dev rug history, bundle/sniper detection, co-investor tracking
okx-dex-socialCrypto news feed + search, social sentiment ranking, KOL vibe & leaderboard
okx-dex-wsWebSocket real-time streams (price, candle, trades, signals, tracker, meme) — CLI + custom script use
okx-defi-portfolioView existing DeFi positions across protocols (lending / LP / staking)
okx-dapp-discoveryBootstrap router: resolves a named DApp (Polymarket, Aave, Hyperliquid, etc.) to its plugin and forwards the prompt

🔄 Trading & Execution (5)

Sub-skillUse for
okx-dex-swapMulti-chain DEX aggregation across 500+ liquidity sources — quote, approve, swap
okx-dex-bridgeCross-chain swap/transfer via Stargate / Across / Relay / Gas.zip — quote, build, track
okx-dex-strategyLimit orders (TP / SL / buy-dip / chase-high) stored & auto-executed in TEE
okx-defi-investDApp-agnostic DeFi yield discovery + deposit/withdraw/claim (no named protocol)
okx-onchain-gatewayGas price + estimate, transaction simulation, signed-tx broadcast, order tracking

💼 Wallet (2)

Sub-skillUse for
okx-agentic-walletOnchainOS wallet lifecycle: login / verify OTP / status / addresses / balance / send (native + ERC-20 + SPL) / tx history / contract-call
okx-wallet-portfolioRead-only portfolio for any public address — total value, all token balances, per-token lookup

🔐 Security (1)

Sub-skillUse for
okx-securityToken risk & honeypot scan, DApp phishing scan, transaction pre-execution sim, signature safety, ERC-20/Permit2 approvals management

💸 Payments (3)

Sub-skillUse for
okx-agent-payments-protocolUnified dispatcher — handles x402 (exact / aggr_deferred), MPP (charge / session), and a2a-pay paymentId flows. Auto-detects 402 protocol from response headers.
okx-x402-paymentDirect x402 signing entry (still supported; new code prefers okx-agent-payments-protocol)
okx-a2a-payment⚠️ DEPRECATED — folded into okx-agent-payments-protocol. Stub kept only for legacy aliases.

🛠️ Ops & Onboarding (3)

Sub-skillUse for
okx-how-to-playEntry router for blank/onboarding prompts ("what does this do", "how do I start"). Routes to a concrete workflow in ≤ 3 turns.
okx-growth-competitionAgentic Wallet exclusive trading competitions: list → join → rank → claim
okx-audit-logAudit log file path for offline debugging (~/.onchainos/audit.jsonl)

---

Quick task → sub-skill map

I want to…Sub-skillSuggested path
Check a token price or chartokx-dex-marketA (no key)
Search / analyze a token's holdersokx-dex-tokenA (no key)
Follow smart money buysokx-dex-signalA (no key)
Scan new meme launchesokx-dex-trenchesA (no key)
Stream live market data over WSokx-dex-wsB (CLI/WS client)
Look at any public walletokx-wallet-portfolioA (no key)
Scan a token / dApp for riskokx-securityA (no key)
Estimate gas / simulate a txokx-onchain-gatewayA or B
Manage / send from my own walletokx-agentic-walletB (requires login)
Swap tokens (same chain)okx-dex-swap REST + sign with the wallet skill (Agent Wallet)
Bridge tokens (cross chain)okx-dex-bridgeB (signing)
Place a limit orderokx-dex-strategyB (TEE storage)
Find best DeFi yield (any protocol)okx-defi-investB (signing)
View my DeFi positionsokx-defi-portfolioA (no key)
Use a specific DApp (Aave, Polymarket, …)okx-dapp-discoveryB (full DApp flow)
Pay an x402 / MPP / a2a-pay gated resourceokx-agent-payments-protocolB (signing)
Join a trading competitionokx-growth-competitionB (wallet required)
Debug a CLI failureokx-audit-logB (local CLI logs)

---

Important notes

  • Chain identifiers: both human names (ethereum, solana, xlayer) and

numeric IDs are accepted. Run onchainos swap chains or onchainos gateway chains for the full list.

  • Read-only ops (market data, signals, security scan, public-address

portfolios) work via Path A without any user-supplied API Key.

  • Trading & sending default to the user's Agent Wallet via the wallet

skill. Only fall back to onchainos wallet login when the user asks.

  • Security gate: when okx-security reports a fail, the calling agent

MUST block the related operation rather than proceed.

---

Resources

  • Upstream repo: okx/onchainos-skills
  • OnchainOS docs: OKX Web3 Build — OnchainOS
  • Skills registry: skills.sh/okx/onchainos-skills
  • Dev portal (API Key): web3.okx.com/build/dev-portal

Featured

SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you →
MoltAwards - Agent internet for government contracts + jobs. logoMoltAwards - Agent internet for government contracts + jobs.

MoltAwards is an agent-native social layer for matchawards.com.

Learn more →
CLN.Work — Stop prompting, start hiring AI employees logoCLN.Work — Stop prompting, start hiring AI employees

Turn your Claude agents into a real team — onboard them, assign tasks, and manage them like staff.

Hire AI employees →
Deploy your own AI agent logoDeploy your own AI agent

Launch OpenClaw or Hermes on Hostinger in about 60 seconds, keep your agent live 24/7, earn 20%-40% on your next referral up to $25-$45, and give your friend 20% off.

Launch on Hostinger →
AdvertiseGet your AI tool in front of 67,000+ AI enthusiastsSee placements & pricing →

Categories

External DownloadsCommand Execution
View on GitHub

Recommended skills

Browse all →

find-skills

vercel-labs/skills

2.2M installsInstall

frontend-design

anthropics/skills

587K installsInstall

vercel-react-best-practices

vercel-labs/agent-skills

501K installsInstall

agent-browser

vercel-labs/agent-browser

482K installsInstall

microsoft-foundry

microsoft/azure-skills

414K installsInstall

web-design-guidelines

vercel-labs/agent-skills

414K installsInstall

Browse

Skills by category

Frontend250Git198Data154Testing120Design105Docs103Security96Automation87Backend76Devops37Productivity29Mcp23

Advertise on Remote OpenClaw

Get your AI tool in front of 67,000+ AI enthusiasts a month

See placements & pricing →

Remote OpenClaw

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

Explore

  • Home
  • Skills Directory
  • Claude Code Skills
  • Codex Skills
  • Marketplace
  • Hermes Ecosystem
  • Agents
  • Guide
  • Learn
  • Blog

More

  • Playbook
  • Free Tools
  • Shipping
  • Contact
  • Terms
  • Privacy
© 2026 Remote OpenClaw