← All skills
Tencent SkillHub · Data Analysis

Kraken

Query Kraken crypto account balances, portfolio, trades, and staking positions.

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

Query Kraken crypto account balances, portfolio, trades, and staking positions.

⬇ 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_api.py, 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.1.2

Documentation

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

Kraken Crypto Skill

Use the kraken_cli.py wrapper to query your Kraken account.

Setup

Export your Kraken API credentials. export KRAKEN_API_KEY="your_api_key" export KRAKEN_API_SECRET="your_api_secret" You can also create a .env file in the skill directory.

1. Primary Commands

Use these commands for portfolio queries. They calculate totals automatically. CommandDescriptionsummaryPortfolio overview with correct totalsnet-worthTotal net worth calculationperformanceReturns compared to depositsholdingsAsset breakdown with USD valuesstakingStaking positions and rewards

Example Output summary

TOTAL NET WORTH Main Wallet (Equity): $544.95 Earn Wallet (Bonded): $81.89 TOTAL: $626.84 AUTO EARN (Flexible) in Main Wallet BTC : $493.92 (rewards: $0.03) ETH : $50.66 (rewards: $0.11) BONDED STAKING in Earn Wallet SOL : $66.73 (rewards: $0.89) DOT : $15.16 (rewards: $0.55) Total Staking Rewards: $1.71 The wrapper separates Auto Earn from Bonded staking to avoid double counting.

2. Raw API Commands

These commands use kraken_api.py for detailed data. Use them for specific information not covered by primary commands.

Market Data Public

CommandDescriptionUse Caseticker --pair XXBTZUSDCurrent price and 24h statsPrice checksohlc --pair XXBTZUSDHistorical candlesChart datadepth --pair XXBTZUSDOrder bookLiquidity analysisrecent-trades --pair XXBTZUSDLive tradesMarket activityassetsAsset names and decimalsAsset lookupspairsValid trading pairsPair discoverystatusExchange statusConnectivity checktimeServer timeAPI health check

Account Data Private

CommandDescriptionUse CasebalanceRaw asset quantitiesDetailed holdingsbalance-exBalance with reserved fundsMargin analysisportfolioTrade balance in USDRaw equity dataopen-ordersActive ordersOrder managementclosed-ordersCompleted ordersOrder historytradesTrade execution historyTrade analysisledgerAll transactionsTransaction trackingledger --asset ZUSDFiltered by assetAsset historyvolume30 day volumeFee tier info

Earn Data Private

CommandDescriptionUse Caseearn-positionsRaw staking allocationsDetailed staking dataearn-strategiesAvailable yield programsStrategy discoveryearn-statusPending stakesAllocation monitoringearn-dealloc-status --refid IDPending unstakesDeallocation monitoring

Funding Private

CommandDescriptionUse Casedeposits-methodsAvailable deposit methodsDeposit optionsdeposits-address --asset BTCWallet addressReceiving crypto

Double Counting Warning

Do not add balance and earn-positions together. Kraken has two staking types. Auto Earn Flexible assets stay in the Main wallet. These are included in portfolio equity. Bonded Staking assets move to the Earn wallet. These are not in portfolio equity. The summary command handles this correctly. If you use raw commands manually follow this logic. Correct calculation is Total equals Portfolio Equity plus Bonded Earn Only. Incorrect calculation is Total equals Portfolio Equity plus All Earn Allocations.

API Response Notes

ohlc returns a list under the pair key. depth bids and asks are nested under the pair key. recent-trades returns a list containing price, volume, time, side, type, and misc. earn-strategies uses the items key with apr_estimate.

4. Example Usage

User RequestBot ActionWhat is my crypto portfolio?Run summaryWhat is my net worth?Run net-worthHow am I performing?Run performanceShow my holdingsRun holdingsShow my stakingRun stakingWhat is BTC price?Run ticker --pair XXBTZUSDShow my open ordersRun open-ordersShow my trade historyRun tradesGet my BTC deposit addressRun deposits-address --asset BTC

5. API Key Permissions Required

FeaturePermissionBalance and PortfolioQuery FundsOrders and Trades and LedgersQuery FundsEarn AllocationsEarnDeposit AddressesQuery FundsMarket DataNone

Category context

Data access, storage, extraction, analysis, reporting, and insight generation.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

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