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.
npx agentmods add instructions/krakenfx/kraken-cli/agents-mdgit clone --depth 1 https://github.com/krakenfx/kraken-cliWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.06207 | $0.06207 |
| Opus 5 | $0.03104 | $0.03104 |
| Sonnet 5 | $0.01241 | $0.01241 |
| Haiku 4.5 | $0.00621 | $0.00621 |
Grade C, and why
kraken-cli AGENTS.md scanned grade C with 3 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 3d 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.
Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/krakenfx/kraken-cli/releases/latest/download/kraken-cli-installer.sh | sh Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/krakenfx/kraken-cli/releases/latest/download/kraken-cli-installer.sh | sh Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
result = subprocess.run( How it starts
The opening of the file, as written. The whole thing — 510 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent Integration Guide: kraken-cli
This is experimental software. Commands execute real financial transactions on the Kraken exchange. Test with
kraken paperbefore using real funds. See DISCLAIMER.md for full terms.
Self-contained guide for integrating kraken-cli into AI agents, MCP clients, and automated pipelines.
Fast entry points:
- Runtime agent context:
CONTEXT.md - Full command contract:
agents/tool-catalog.json - Error routing contract:
agents/error-catalog.json - Workflow skills:
skills/
Installation
Single binary, no runtime dependencies.
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/krakenfx/kraken-cli/releases/latest/download/kraken-cli-installer.sh | sh
Pre-built binaries for macOS (Apple Silicon, Intel) and Linux (x86_64, ARM64) are also available on the GitHub Releases page.
Verify: kraken --version
Authentication
Environment variables (recommended for agents)
export KRAKEN_API_KEY="your-key"
export KRAKEN_API_SECRET="your-secret"
# Futures (optional, separate credentials)
export KRAKEN_FUTURES_API_KEY="your-futures-key"
export KRAKEN_FUTURES_API_SECRET="your-futures-secret"
No config file needed. No interactive prompts. The CLI reads credentials from the environment.
Credential resolution order
- Command-line flags (
--api-key,--api-secret) - Environment variables (
KRAKEN_API_KEY,KRAKEN_API_SECRET) - Config file (
~/.config/kraken/config.toml)
Required permissions by command group
| Group | Kraken API permissions |
|---|---|
| market | None (public) |
| account | Query Funds, Query Open Orders & Trades, Query Closed Orders & Trades, Query Ledger Entries |
| trade | Create & Modify Orders, Cancel/Close Orders |
| funding | Deposit Funds, Withdraw Funds, Query Funds |
| earn | Query Funds, Create & Modify Orders |
| subaccount | Access & Modify Account Settings |
| websocket (public) | None |
| websocket (private) | Same as account + trade |
| futures | Access Futures Markets, Create & Modify Orders, Cancel/Close Orders |
| paper | None (local simulation) |
| futures paper | None (local simulation) |
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.
- 3d ago First seen · 510 lines · 6,207 tokens per session scan C 15ccc84a10dc
kraken-cli AGENTS.md is an instructions file published in the GitHub repository krakenfx/kraken-cli (704 stars, last pushed 26d ago), licensed MIT. It adds 6,207 tokens to every session, about $0.0310 per session on Opus 5. A static security scan graded it C with 3 findings (downloads and executes remote code, makes network calls, runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
cryptoexchange-net
Use CryptoExchange.Net abstractions when generating C#/.NET code that needs to work across MULTIPLE cryptocurrency exchanges (Binance + Bybit + OKX + Kraken + Coinbase + ...) — for arbitrage, best-execution routing, multi-exchange portfolio dashboards, exchange-agnostic trading bots, or comparison tools. Triggers on…
OpenCandle AGENTS.md
Instructions for Kahtaf/OpenCandle, covering opencandle, commands, where to look, code style and conventions.
claude-finance-kit CLAUDE.md
Instructions for hongbietcode/claude-finance-kit, covering claude finance kit assistant, scope, operating principles, skill (single entry point) and references (load when needed).
creditkarma-mcp CLAUDE.md
Claude Code instructions for chrischall/creditkarma-mcp, covering creditkarma-mcp, commands, tool naming, architecture and auth resolution (pattern a template).
bullet-bots AGENTS.md
Instructions for bulletxyz/bullet-bots, covering bullet-bots, build & test, run the faucet curl printed by keygen, then, or (base58 from phantom/delegation export, or hex) and architecture — the harness, feeds, and actors.
romaco-mcp AGENTS.md
AGENTS.md instructions for romaco-labs/romaco-mcp, covering purpose, read first, product boundaries, architecture invariants and development method.