From kraken-cli
Manages Kraken deposits, withdrawals, and wallet transfers via CLI commands with safety rules like fee checks and human approval for withdrawals.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kraken-cli:kraken-funding-opsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill for:
Use this skill for:
kraken deposit methods BTC -o json 2>/dev/null
kraken deposit addresses BTC "Bitcoin" -o json 2>/dev/null
kraken deposit addresses BTC "Bitcoin" --new -o json 2>/dev/null
kraken deposit status --asset BTC -o json 2>/dev/null
Filter by time range:
kraken deposit status --asset BTC --start 1704067200 --end 1706745600 -o json 2>/dev/null
Paginate large result sets:
kraken deposit status --asset BTC --limit 25 --cursor <CURSOR> -o json 2>/dev/null
kraken withdrawal methods --asset BTC -o json 2>/dev/null
kraken withdrawal addresses --asset BTC --verified true -o json 2>/dev/null
kraken withdrawal info BTC "my-btc-address" 0.5 -o json 2>/dev/null
kraken withdraw BTC "my-btc-address" 0.5 -o json 2>/dev/null
kraken withdrawal status --asset BTC -o json 2>/dev/null
Cancel a pending withdrawal:
kraken withdrawal cancel BTC <REFID> -o json 2>/dev/null
Move funds between spot and futures wallets:
kraken wallet-transfer USD 1000 --from <SPOT_IIBAN> --to <FUTURES_IIBAN> -o json 2>/dev/null
Futures-specific transfer:
kraken futures transfer 1000 USD -o json 2>/dev/null
Check transfer history:
kraken futures transfers -o json 2>/dev/null
Always check fees before withdrawing. Compare the fee to the withdrawal amount:
INFO=$(kraken withdrawal info BTC "my-btc-address" 0.5 -o json 2>/dev/null)
# Parse .fee and .limit from the response
# Present fee to user before proceeding
--verified true when listing addresses to confirm approval status.npx claudepluginhub krakenfx/kraken-cliExecutes safe crypto withdrawals from Kraken to pre-approved cold storage addresses with balance checks, fee estimation, human approval, status tracking, and verification.
Manages crypto wallet operations via cdcx CLI: generates deposit addresses, lists networks per currency, queries deposit/withdrawal histories, executes gated withdrawals to whitelisted addresses.
Queries BingX spot wallet deposit/withdrawal history, coin network configs/limits/fees, deposit addresses, and initiates withdrawals.