kraken-market-intel
Read market state with low-noise data pulls and streaming updates.
Best use case
kraken-market-intel is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Read market state with low-noise data pulls and streaming updates.
Teams using kraken-market-intel should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/kraken-official-market-intel/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How kraken-market-intel Compares
| Feature / Agent | kraken-market-intel | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Read market state with low-noise data pulls and streaming updates.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# 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 ```bash 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 ```bash 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 `--count` and `--depth` flags 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
Related Skills
okx-cex-market
This skill should be used when the user asks for 'price of BTC', 'ETH ticker', 'show me the orderbook', 'market depth', 'BTC candles', 'OHLCV chart data', 'funding rate', 'open interest', 'mark price', 'index price', 'recent trades', 'price limit', 'list instruments', 'what instruments are available', or any request to query public market data on OKX CEX. All commands are read-only and do NOT require API credentials. Do NOT use for account balance/positions (use okx-cex-portfolio), placing/cancelling orders (use okx-cex-trade), or grid/DCA bots (use okx-cex-bot).
okx-dex-market
This skill should be used when the user asks about live on-chain market data: token prices, price charts (K-line, OHLC), trade history, or swap activity. Also covers on-chain signals — smart money, whale, and KOL wallet activity, large trades, and signal-supported chains. For meme tokens: scanning new launches (扫链/trenches,golden dog, alpha, pump fun), checking dev wallets, developer reputation, rug pull detection, tokens by same creator, bundle/sniper detection, bonding curves, and meme token safety checks. For token search, market cap, liquidity, trending tokens, or holder distribution, use okx-dex-token instead.
Kraken Crypto Skill
Use the kraken_cli.py wrapper to query your Kraken account.
openclaw_kraken
Use a Bash CLI to query Kraken Spot and Futures APIs, inspect account state, run guarded trading and funding actions, and work with Kraken websocket payloads using OpenClaw-managed secrets.
kraken-ws-streaming
Real-time data streaming via WebSocket for spot and futures.
kraken-twap-execution
Execute large orders as time-weighted slices to reduce market impact.
kraken-tax-export
Export trade history, ledgers, and cost basis data for tax reporting.
kraken-subaccount-ops
Create and manage subaccounts with inter-account transfers.
kraken-stop-take-profit
Manage stop-loss and take-profit orders for risk-bounded positions.
kraken-spot-execution
Execute spot orders with validation, confirmation gates, and post-trade checks.
kraken-shared
Shared runtime contract for kraken-cli: auth, invocation, parsing, and safety.
kraken-risk-operations
Operational risk controls for live agent trading sessions.