okx-cex-portfolio

okx-cex-portfolio is a skill for Claude Code, Codex from okx/agent-skills. It costs 236 tokens per session (7,053 once invoked), scanned A, a copy of okx-cex-portfolio, MIT.

A command-line tool for viewing an OKX cryptocurrency-exchange account, including balances, positions, profit and loss, bills, fees, and transfers. It requires configured OKX access credentials.

In plain words
What is it for?
Use it to check balances, open or closed positions, unrealized or realized profit and loss, transaction history, trading fees, fee tiers, and fund transfers.
Why use it?
It puts account and trading records in one terminal workflow instead of requiring manual checks in the exchange interface. Demo mode can be used for simulated trading checks without real funds.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to check balances, open or closed positions, unrealized or realized profit and loss, transaction history, trading fees, fee tiers, and fund transfers.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/okx/agent-skills/okx-cex-portfolio
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add okx/agent-skills --skill okx-cex-portfolio
Clone the repo
git clone --depth 1 https://github.com/okx/agent-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for okx-cex-portfolio

README.md
[![agentmods](https://agentmods.dev/badge/skills/okx/agent-skills/okx-cex-portfolio/github.svg)](https://agentmods.dev/skills/okx/agent-skills/okx-cex-portfolio)
Your own site
<a href="https://agentmods.dev/skills/okx/agent-skills/okx-cex-portfolio"><img src="https://agentmods.dev/badge/skills/okx/agent-skills/okx-cex-portfolio/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for okx-cex-portfolio

Your own site · 80×15
<a href="https://agentmods.dev/skills/okx/agent-skills/okx-cex-portfolio"><img src="https://agentmods.dev/badge/skills/okx/agent-skills/okx-cex-portfolio.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 236 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,053 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 22 May 2026
  • Snyk warn 22 May 2026
How audits are shown
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00236 $0.07053
Opus 5 $0.00118 $0.03527
Sonnet 5 $0.00047 $0.01411
Haiku 4.5 $0.00024 $0.00705

Measured 3d ago against content hash 7c816d424277, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

okx-cex-portfolio scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to okx-cex-portfolio — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/okx-cex-portfolio/SKILL.md · 599 lines

How it starts

The opening of the file, as written. The whole thing — 599 lines — stays where its author put it; the contents beside it link to each section on GitHub.

OKX CEX Portfolio & Account CLI

Account balance, positions, P&L, bills, fees, and fund transfers on OKX exchange. Requires API credentials.

Preflight

Before running any command, follow ../_shared/preflight.md. Use metadata.version from this file's frontmatter as the reference for Step 2.

Prerequisites

  1. Install okx CLI:
    npm install -g @okx_ai/okx-trade-cli
    
  2. Configure credentials:
    okx config init   # select site -> follow browser OAuth flow
    
  3. Test with demo mode (simulated trading, no real funds):
    okx --demo account balance
    

Security: NEVER accept credentials in chat. Guide users to okx config init for setup.

Credential & Profile Check

Run this check before any authenticated command. The auth method is detected during preflight Step 2 and remembered for the session.

Step A — Verify credentials

Check both sources (see preflight Step 2 for the decision table). okx auth status --json alone is insufficient — its apiKey field is always false and does NOT reflect the TOML config.

okx config show --json      # authoritative for API-key presence
okx auth status --json      # authoritative for OAuth session state

Branch in this order — first match wins:

  • config show has any profile with a non-empty api_keyAPI Key mode. Proceed to Step B.
  • No API-key profile AND auth status returns "status": "logged_in"OAuth mode. Proceed to Step B.
  • No API-key profile AND auth status returns "status": "pending" — login in progress, wait.
  • No API-key profile AND auth status returns "status": "not_logged_in"stop all operations, load okx-cex-auth skill and follow login steps, wait for completion.

Step B — Confirm trading mode

Resolution rules:

  1. Current message intent is clear (e.g. "real" / "实盘" / "live" → live; "test" / "模拟" / "demo" → demo) → use it and inform the user
  2. Current message has no explicit declaration → check conversation context for a previous choice:
    • Found → reuse it, inform user
    • Not found → ask: "Live (实盘) or Demo (模拟盘)?" — wait for answer before proceeding

Read the full file on GitHub · 599 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago Changed 7c816d424277
  2. 7d ago Changed · +3 lines 22b0b08117b6
  3. 11d ago First seen · 596 lines · 236 tokens per session scan A 9b2c60b92b3c

Subscribe to this mod's changes

okx-cex-portfolio is a skill published in the GitHub repository okx/agent-skills (172 stars, last pushed 4d ago), licensed MIT. It adds 236 tokens to every session and 7,053 once invoked, about $0.0012 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to okx-cex-portfolio, differing in 0 lines, and is treated as a copy.