Agent Skills
› krakenfx/kraken-cli
› recipe-fee-tier-progress
recipe-fee-tier-progress
GitHub追踪30天交易量进度以评估达到下一级手续费门槛的距离。通过CLI获取当前交易量和费率,计算剩余所需交易量及预估天数,辅助用户优化交易策略和成本。
Trigger Scenarios
查询交易手续费等级进度
评估达到下一手续费门槛所需时间
Install
npx skills add krakenfx/kraken-cli --skill recipe-fee-tier-progress -g -y
SKILL.md
Frontmatter
{
"name": "recipe-fee-tier-progress",
"version": "1.0.0",
"metadata": {
"openclaw": {
"domain": "portfolio",
"category": "recipe"
},
"requires": {
"bins": [
"kraken"
],
"skills": [
"kraken-fee-optimization"
]
}
},
"description": "Track 30-day trading volume progress toward the next fee tier."
}
Fee Tier Progress
PREREQUISITE: Load the following skill to execute this recipe:
kraken-fee-optimization
Check current 30-day volume and calculate how far you are from the next fee tier.
Steps
- Get current volume and fee tier:
kraken volume --pair BTCUSD -o json 2>/dev/null - Extract
volume(30-day USD) and currentfeerates - Look up the next tier threshold from the fee schedule
- Calculate remaining volume needed: next_threshold - current_volume
- Estimate days to reach at current daily average
- Check futures volume if applicable:
kraken futures fee-schedule-volumes -o json 2>/dev/null - Present summary: current tier, current volume, next tier threshold, volume remaining, estimated days
If you hit a mismatch between what you are trying to do and the CLI's interface or responses — including a mismatch between this skill and the installed CLI version's contract — feel free to submit feedback with kraken feedback.
Version History
- aa56e59 Current 2026-08-20 04:46
- aa32814 2026-07-25 10:29


