用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/krakenfx/kraken-cli --skill kraken-funding-ops命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Capture the spot-futures price spread with delta-neutral basis trades.
基于 SOC 职业分类
正在显示 SKILL.md
| name | kraken-funding-ops |
| version | 1.0.0 |
| description | Manage deposits, withdrawals, and wallet transfers safely. |
| metadata | {"openclaw":{"category":"finance"},"requires":{"bins":["kraken"]}} |
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.kraken feedback.