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.
git clone --depth 1 https://github.com/JKorf/CryptoClients.NetWrote 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.
[](https://agentmods.dev/rules/jkorf/cryptoclients.net/crypto-clients-net)<a href="https://agentmods.dev/rules/jkorf/cryptoclients.net/crypto-clients-net"><img src="https://agentmods.dev/badge/rules/jkorf/cryptoclients.net/crypto-clients-net.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.00691 |
| Opus 5 | $0.00000 | $0.00345 |
| Sonnet 5 | $0.00000 | $0.00138 |
| Haiku 4.5 | $0.00000 | $0.00069 |
Grade A, and why
crypto-clients-net 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.
How it starts
The opening of the file, as written. The whole thing — 67 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CryptoClients.Net Conventions
This codebase uses CryptoClients.Net for multi-exchange cryptocurrency API access. Do not write raw HttpClient calls to exchange endpoints.
Client setup pattern
using CryptoClients.Net;
using CryptoExchange.Net.SharedApis;
var restClient = new ExchangeRestClient();
var socketClient = new ExchangeSocketClient();
For application code, prefer DI:
services.AddCryptoClients(options => options.OutputOriginalData = true);
Result pattern
Aggregate methods return ExchangeWebResult<T>, ExchangeWebResult<T>[], ExchangeResult<UpdateSubscription>, or ExchangeResult<UpdateSubscription>[]. Always check .Success before reading .Data.
var ticker = await restClient.GetSpotTickerAsync(
"Binance",
new GetTickerRequest(new SharedSymbol(TradingMode.Spot, "BTC", SharedSymbol.UsdOrStable)));
if (!ticker.Success) { /* ticker.Error */ return; }
var price = ticker.Data.LastPrice;
API surface
- Aggregate REST:
restClient.GetSpotTickerAsync(...),GetFuturesTickerAsync(...),GetOrderBookAsync(...),PlaceSpotOrderAsync(...), etc. - Shared REST clients:
restClient.GetSpotTickerClient(exchange),GetBalancesClient(...),GetFuturesOrderClient(...), etc. - Direct exchange REST:
restClient.Binance,restClient.Bybit,restClient.OKX, etc. - Aggregate sockets:
socketClient.SubscribeToTickerUpdatesAsync(...),SubscribeToOrderBookUpdatesAsync(...),SubscribeToBalanceUpdatesAsync(...), etc. - Shared socket clients:
socketClient.GetTickerClient(...),GetOrderBookClient(...),GetSpotOrderClient(...), etc. - Direct exchange sockets:
socketClient.Binance,socketClient.Kucoin,socketClient.OKX, etc.
Hard rules
- Never skip checking
Success. - Use
SharedSymbolfor aggregate/shared APIs. For cross-exchange USD/stable quote routing, preferSharedSymbol.UsdOrStableinstead of hardcodingUSDTwhen USDC/USD variants are acceptable. - Handle per-exchange failures independently in multi-exchange results.
- Use
Get*Client(...)null checks when routing manually. - Use
ExchangeCredentialsorDynamicCredentials; do not guess credential shapes. - Call
subscription.Data.CloseAsync()for one aggregate WebSocket subscription, direct exchangeUnsubscribeAsync(subscription.Data)for direct socket clients, orUnsubscribeAllAsync()for all aggregate subscriptions. - Use direct exchange properties for full exchange-specific APIs.
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.
- 8d ago First seen · 67 lines · 0 tokens per session scan A 8d2b0db89d0f
crypto-clients-net is a cursor rule published in the GitHub repository JKorf/CryptoClients.Net (45 stars, last pushed 6d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 691 tokens. 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.
Other cursor rules, from other repositories
binance-net
Conventions for using Binance.Net library when working with Binance cryptocurrency exchange in C#/.NET. Apply when generating code that interacts with Binance API.
bybit-net
Conventions for using the Bybit.Net library when working with the Bybit cryptocurrency exchange in C#/.NET. Apply when generating code that interacts with the Bybit API.
bingx-net
Conventions for using BingX.Net library when working with the BingX exchange in C#/.NET. Apply when generating code that interacts with the BingX API.
kucoin-net
Conventions for using Kucoin.Net library when working with Kucoin cryptocurrency exchange in C#/.NET. Apply when generating code that interacts with Kucoin API.
kraken-net
Conventions for using Kraken.Net when working with Kraken Spot and Futures cryptocurrency exchange APIs in C#/.NET. Apply when generating code that interacts with Kraken API.
coinex-net
Conventions for using CoinEx.Net when working with the CoinEx cryptocurrency exchange in C#/.NET. Apply when generating code that interacts with the CoinEx API.