Agent Skills
› krakenfx/kraken-cli
› kraken-market-intel
kraken-market-intel
GitHub通过 CLI 获取加密货币市场快照与流数据,解析价格、订单簿及 K 线信息,辅助分析趋势与波动性。
Trigger Scenarios
查询当前资产价格
分析市场趋势或价差
监控实时行情流
Install
npx skills add krakenfx/kraken-cli --skill kraken-market-intel -g -y
SKILL.md
Frontmatter
{
"name": "kraken-market-intel",
"version": "1.0.0",
"metadata": {
"openclaw": {
"category": "finance"
},
"requires": {
"bins": [
"kraken"
]
}
},
"description": "Read market state with low-noise data pulls and streaming updates."
}
kraken-market-intel
Use this skill to answer questions like:
- "What is the current BTCUSD price?"
- "Is spread widening?"
- "What is short-term trend from candles?"
Snapshot Pattern
kraken ticker BTCUSD -o json 2>/dev/null
kraken orderbook BTCUSD --count 10 -o json 2>/dev/null
kraken ohlc BTCUSD --interval 60 -o json 2>/dev/null
Streaming Pattern
kraken ws ticker BTC/USD -o json 2>/dev/null
Parse NDJSON line by line. Do not treat stream output as one JSON object.
Context Efficiency
- Prefer one pair at a time unless comparison is needed.
- Use
--countand--depthflags to limit payload size. - Prefer streaming over high-frequency polling.
Typical Output Use
- Ticker: last price, bid, ask
- Orderbook: near-book depth and imbalance
- OHLC: trend and volatility windows
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:44
- aa32814 2026-07-25 10:28


