kraken-multi-pair

kraken-multi-pair is a skill for Claude Code from krakenfx/kraken-cli. It costs 17 tokens per session (797 once invoked), scanned A, original, MIT.

A monitoring workflow for watching several cryptocurrency trading pairs at the same time. A trading pair shows the exchange rate between two assets, such as BTC and USD.

In plain words
What is it for?
Use it to build watchlists, compare performance, inspect live ticker updates, and look for opportunities across many Kraken pairs.
Why use it?
It avoids checking each pair separately and makes side-by-side comparison easier. You can screen pairs by price, spread, and trading volume.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: built for openclaw.

Part of the kraken-cli plugin — 59 skills, 1 MCP server shipped together

Good fit Use it to build watchlists, compare performance, inspect live ticker updates, and look for opportunities across many Kraken pairs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/krakenfx/kraken-cli/kraken-multi-pair
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add krakenfx/kraken-cli --skill kraken-multi-pair
Clone the repo
git clone --depth 1 https://github.com/krakenfx/kraken-cli

Made for: Claude Code.

Or install kraken-cli, the plugin that ships this one along with the rest of its 59 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for kraken-multi-pair

README.md
[![agentmods](https://agentmods.dev/badge/skills/krakenfx/kraken-cli/kraken-multi-pair.svg)](https://agentmods.dev/skills/krakenfx/kraken-cli/kraken-multi-pair)
Your own site
<a href="https://agentmods.dev/skills/krakenfx/kraken-cli/kraken-multi-pair"><img src="https://agentmods.dev/badge/skills/krakenfx/kraken-cli/kraken-multi-pair.svg" alt="Measured on agentmods" height="20"></a>
Per session 17 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 797 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00017 $0.00797
Opus 5 $0.00009 $0.00398
Sonnet 5 $0.00003 $0.00159
Haiku 4.5 $0.00002 $0.00080

Measured 8d ago against content hash 0daff56f4405, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

kraken-multi-pair scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/kraken-multi-pair/SKILL.md · 113 lines

How it starts

The opening of the file, as written. The whole thing — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.

kraken-multi-pair

Use this skill for:

  • screening multiple pairs at once (price, spread, volume)
  • comparing relative performance across assets
  • building watchlists for agent-driven monitoring
  • identifying opportunity across a pair universe

Multi-Pair Ticker Snapshot

Pass multiple pairs to a single ticker call:

kraken ticker BTCUSD ETHUSD SOLUSD DOTUSD -o json 2>/dev/null

The response contains one object per pair. Extract and compare:

kraken ticker BTCUSD ETHUSD SOLUSD -o json 2>/dev/null | jq 'to_entries[] | {pair: .key, last: .value.last_price, volume: .value.volume_24h}'

Multi-Pair Streaming

Stream tickers for several pairs simultaneously:

kraken ws ticker BTC/USD ETH/USD SOL/USD -o json 2>/dev/null

Each NDJSON line includes a pair identifier. Route updates by pair in the agent loop:

kraken ws ticker BTC/USD ETH/USD SOL/USD -o json 2>/dev/null | while read -r line; do
  PAIR=$(echo "$line" | jq -r '.data[0].symbol // empty')
  LAST=$(echo "$line" | jq -r '.data[0].last // empty')
  [ -n "$PAIR" ] && echo "$PAIR: $LAST"
done

Pair Discovery

List all tradable pairs:

kraken pairs -o json 2>/dev/null

Filter to USD-quoted pairs for a consistent base:

kraken pairs -o json 2>/dev/null | jq '[to_entries[] | select(.key | endswith("USD")) | .key]'

Spread Comparison

Compare bid-ask spreads across pairs to gauge liquidity:

kraken ticker BTCUSD ETHUSD SOLUSD -o json 2>/dev/null | jq 'to_entries[] | {pair: .key, spread: (.value.ask_price - .value.bid_price)}'

Volume Screening

Identify high-volume pairs from a watchlist:

kraken ticker BTCUSD ETHUSD SOLUSD ADAUSD DOTUSD -o json 2>/dev/null | jq 'to_entries | sort_by(-.value.volume_24h) | .[] | {pair: .key, vol_24h: .value.volume_24h}'

Futures Multi-Symbol

Monitor multiple futures contracts:

kraken futures tickers -o json 2>/dev/null

Stream multiple futures tickers:

kraken futures ws ticker PF_XBTUSD PF_ETHUSD -o json 2>/dev/null

Read the full file on GitHub · 113 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 113 lines · 17 tokens per session scan A 0daff56f4405

Subscribe to this mod's changes

kraken-multi-pair is a skill published in the GitHub repository krakenfx/kraken-cli (710 stars, last pushed 1mo ago), licensed MIT. It adds 17 tokens to every session and 797 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.