โ† All skills
Tencent SkillHub ยท Developer Tools

Kraken Pro

Manage Kraken accounts via CLI to view portfolio, market data, place/cancel orders, manage staking, export ledger, and handle deposits/withdrawals.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Manage Kraken accounts via CLI to view portfolio, market data, place/cancel orders, manage staking, export ledger, and handle deposits/withdrawals.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, kraken_cli.py, requirements.txt

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.6

Documentation

ClawHub primary doc Primary doc: SKILL.md 14 sections Open source page

Kraken Skill

Manage your Kraken exchange account via CLI.

Setup

pip3 install -r requirements.txt Set credentials via environment variables or OpenClaw config (skills.entries.kraken-pro.env). Get API key: https://www.kraken.com/u/security/api

Commands

Run: python3 kraken_cli.py <command> [options] All commands accept --json for raw JSON output.

Portfolio (auth required)

CommandDescriptionsummaryPortfolio overview (handles flex vs bonded earn correctly)net-worthSingle net worth numberholdingsAsset breakdown with USD valuesbalanceRaw asset quantities

Market Data (no auth)

CommandDescriptionticker --pair XBTUSDPrice and 24h statspairsTrading pairsassetsAsset list

Order History (auth required)

CommandDescriptionopen-ordersActive ordersclosed-orders [--limit N]Completed orderstrades [--limit N] [--csv]Trade execution history (CSV for export)

Ledger (auth required)

ledger [--start YYYY-MM-DD] [--end YYYY-MM-DD] [--asset BTC] [--type trade|deposit|withdrawal|staking] [--csv] [--limit N] Auto-paginates (Kraken returns max 50/request). --csv dumps raw Kraken data.

Trading (auth required)

All trading commands require --confirm. Use --validate for dry-run. CommandDescriptionbuy --pair XBTUSD --type market|limit --amount N [--price P] --confirmPlace buy ordersell --pair XBTUSD --type market|limit --amount N [--price P] --confirmPlace sell ordercancel-order --id OXXXXX --confirmCancel specific ordercancel-all --confirmCancel all open orders Always confirm with the user before placing real orders. Use --validate first.

Earn/Staking (auth required)

CommandDescriptionearn-positionsCurrent staking allocationsearn-strategiesAvailable yield programsearn-statusPending requestsearn-allocate --strategy-id ID --amount N --confirmStake fundsearn-deallocate --strategy-id ID --amount N --confirmUnstake funds

Funding (auth required)

CommandDescriptiondeposit-methods --asset BTCDeposit methods for an assetdeposit-address --asset BTCGet deposit addresswithdraw --asset BTC --key NAME --amount N --confirmWithdraw to saved addresswithdraw-statusRecent withdrawal status Withdrawal notes: Addresses must be pre-configured in Kraken's web UI (can't add via API) Can't list saved address names via API โ€” ask the user for the key name Addresses are per-asset: a SOL address won't work for USDC withdrawals even if it's the same wallet. Each asset needs its own entry. --key is the saved address name in Kraken, not the actual address

Example Usage

User RequestCommandWhat's my portfolio?summaryBTC price?ticker --pair XBTUSDExport 2025 ledger for taxesledger --start 2025-01-01 --end 2025-12-31 --csvExport trade historytrades --csvBuy 0.1 BTC at marketbuy --pair XBTUSD --type market --amount 0.1 --confirmShow staking positionsearn-positions

Kraken Pair Naming

Kraken uses non-standard names: XBT (not BTC), XETH (not ETH), Z-prefix for fiat (ZUSD, ZCAD). When unsure of a pair name, run pairs --json and grep for the asset.

Portfolio Logic

Kraken has two earn types: Auto Earn (flex): in main wallet, included in trade balance equity Bonded staking: separate earn wallet, NOT in trade balance summary calculates: Total = Trade Balance Equity + Bonded Staking Only

API Permissions

FeaturePermissionBalances, portfolio, ledgerQuery FundsOrders, trades (view)Query Open/Closed Orders & TradesPlace/cancel ordersCreate & Modify OrdersEarn allocate/deallocateWithdraw FundsWithdrawalsWithdraw FundsMarket dataNone

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts1 Files
  • SKILL.md Primary doc
  • kraken_cli.py Scripts
  • requirements.txt Files