skills/kraken-earn-staking/SKILL.md
Discover staking strategies, allocate funds, and track earn positions.
npx skillsauth add krakenfx/kraken-cli kraken-earn-stakingInstall 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.
Use this skill for:
When communicating to client, use the front-end terminology rather than API terminology (so bonded, flexible and auto-earn).
can_allocate and can_deallocate on flex strategy are always false even if user is eligible for the flex strategyList all strategies for an asset:
kraken earn strategies --asset ETH -o json 2>/dev/null
Filter by lock type:
kraken earn strategies --asset ETH --lock-type instant -o json 2>/dev/null
kraken earn strategies --asset DOT --lock-type bonded -o json 2>/dev/null
Paginate results:
kraken earn strategies --limit 10 --cursor <CURSOR> --ascending -o json 2>/dev/null
Key fields in each strategy: id, asset, apr_estimate, lock_type, min_amount, can_allocate, can_deallocate, yield_source.
id.kraken earn allocate <STRATEGY_ID> 1.5 -o json 2>/dev/null
kraken earn allocate-status <STRATEGY_ID> -o json 2>/dev/null
kraken earn deallocate <STRATEGY_ID> 1.0 -o json 2>/dev/null
kraken earn deallocate-status <STRATEGY_ID> -o json 2>/dev/null
Bonded strategies may have unbonding periods. The status response indicates whether funds are pending or available.
kraken earn allocations -o json 2>/dev/null
Filter out zero balances:
kraken earn allocations --hide-zero-allocations -o json 2>/dev/null
Convert to a reference currency for comparison:
kraken earn allocations --converted-asset USD --hide-zero-allocations -o json 2>/dev/null
When helping a user choose a strategy:
apr_estimate, lock_type, and min_amount.can_allocate and can_deallocate fields before attempting operations.tools
Connect MCP clients to kraken-cli for native tool calling without subprocess wrappers.
testing
Safely withdraw funds to a pre-approved cold storage address.
testing
Run a weekly portfolio rebalance to maintain target asset allocations.
testing
Ride a trend with a trailing stop that locks in profits on reversal.