Agent Skills
› krakenfx/kraken-cli
› recipe-morning-market-brief
recipe-morning-market-brief
GitHub生成包含价格、成交量及投资组合状态的每日市场简报,通过CLI获取行情数据与账户信息并汇总呈现。
Trigger Scenarios
需要每日市场概览
查询投资组合状态
Install
npx skills add krakenfx/kraken-cli --skill recipe-morning-market-brief -g -y
SKILL.md
Frontmatter
{
"name": "recipe-morning-market-brief",
"version": "1.0.0",
"metadata": {
"openclaw": {
"domain": "market-data",
"category": "recipe"
},
"requires": {
"bins": [
"kraken"
],
"skills": [
"kraken-market-intel",
"kraken-portfolio-intel"
]
}
},
"description": "Generate a morning market summary with prices, volume, and portfolio state."
}
Morning Market Brief
PREREQUISITE: Load the following skills to execute this recipe:
kraken-market-intel,kraken-portfolio-intel
Generate a concise morning summary covering market conditions and portfolio state.
Steps
- Check system status:
kraken status -o json 2>/dev/null - Get prices for core watchlist:
kraken ticker BTCUSD ETHUSD SOLUSD -o json 2>/dev/null - Get 24h OHLC for trend context:
kraken ohlc BTCUSD --interval 1440 -o json 2>/dev/null - Check portfolio balances:
kraken balance -o json 2>/dev/null - Check open orders:
kraken open-orders -o json 2>/dev/null - Check futures positions if applicable:
kraken futures positions -o json 2>/dev/null - Check earn allocations:
kraken earn allocations --hide-zero-allocations -o json 2>/dev/null - Present summary: price table, 24h change, portfolio value, open orders count, position P&L
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


