Agent Skills
› krakenfx/kraken-cli
› recipe-earn-yield-compare
recipe-earn-yield-compare
GitHub对比多资产质押收益,按锁定期分类并排名,识别再分配机会以优化收益率。
Trigger Scenarios
比较不同资产的质押收益率
寻找最佳风险调整后收益策略
Install
npx skills add krakenfx/kraken-cli --skill recipe-earn-yield-compare -g -y
SKILL.md
Frontmatter
{
"name": "recipe-earn-yield-compare",
"version": "1.0.0",
"metadata": {
"openclaw": {
"domain": "earn",
"category": "recipe"
},
"requires": {
"bins": [
"kraken"
],
"skills": [
"kraken-earn-staking"
]
}
},
"description": "Compare earn strategy yields across assets and lock types to find the best rate."
}
Compare Earn Yields
PREREQUISITE: Load the following skill to execute this recipe:
kraken-earn-staking
Compare available staking/earn strategies across assets to find the best risk-adjusted yield.
Steps
- List strategies for multiple assets:
kraken earn strategies --asset ETH -o json 2>/dev/nullkraken earn strategies --asset DOT -o json 2>/dev/nullkraken earn strategies --asset SOL -o json 2>/dev/nullkraken earn strategies --asset ATOM -o json 2>/dev/null
- Extract
apr_estimate,lock_type,min_amount,can_allocatefrom each - Separate by lock type: flexible vs bonded
- Rank by APR within each lock type
- Present comparison table: asset, APR, lock type, minimum amount, availability
- Check current allocations:
kraken earn allocations --hide-zero-allocations --converted-asset USD -o json 2>/dev/null - Identify reallocation opportunities (move from lower to higher yield)
- If user approves, deallocate from lower yield and allocate to higher yield
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


