ccxt: Skill for Claude Code

.agents/skills/binance-sports-ai-analyzer/SKILL.md

binance-sports-ai-analyzer is a skill for Claude Code, Codex from ccxt/ccxt. It costs 60 tokens per session (1,930 once invoked), scanned A, original, MIT.

A World Cup football analysis assistant that retrieves available matches, their details, AI predictions, news insights, and a broader analysis. Tournaments use match slugs and canonical IDs as identifiers for finding the correct game.

In plain words
What is it for?
Use it to list and identify World Cup matches, review prediction probabilities and context, recalculate results with custom adjustments, or prepare a prediction-market trade after explicit confirmation.
Why use it?
It turns a match request into a checked analysis flow, reducing the chance of using the wrong game or mixing up prediction data. It can recalculate probabilities when the user supplies changed signals.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is ccxt/ccxt's own configuration. It tells Claude Code and Codex how to work on ccxt itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything ccxt configures →

About the project

CCXT is a software library that gives programs a common interface for accessing cryptocurrency exchanges and prediction markets. It is used by developers, traders, analysts, and data scientists for market-data analysis, automated trading, backtesting, and trading bots.

ccxt/ccxt · 43,945 stars · on GitHub · docs.ccxt.com

Reuse

Borrowing it

Nothing to install: this file belongs to ccxt/ccxt. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/ccxt/ccxt/master/.agents/skills/binance-sports-ai-analyzer/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ccxt/ccxt

Made for: Claude Code, Codex.

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 binance-sports-ai-analyzer

README.md
[![agentmods](https://agentmods.dev/badge/skills/ccxt/ccxt/binance-sports-ai-analyzer/github.svg)](https://agentmods.dev/skills/ccxt/ccxt/binance-sports-ai-analyzer)
Your own site
<a href="https://agentmods.dev/skills/ccxt/ccxt/binance-sports-ai-analyzer"><img src="https://agentmods.dev/badge/skills/ccxt/ccxt/binance-sports-ai-analyzer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for binance-sports-ai-analyzer

Your own site · 80×15
<a href="https://agentmods.dev/skills/ccxt/ccxt/binance-sports-ai-analyzer"><img src="https://agentmods.dev/badge/skills/ccxt/ccxt/binance-sports-ai-analyzer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,930 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
  • Snyk warn 7 Sept 2026
  • 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.00060 $0.01930
Opus 5 $0.00030 $0.00965
Sonnet 5 $0.00012 $0.00386
Haiku 4.5 $0.00006 $0.00193

Measured 11d ago against content hash 944cf5fc0fba, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

binance-sports-ai-analyzer 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 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/cli.mjs), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

.agents/skills/binance-sports-ai-analyzer/SKILL.md · 115 lines

How it starts

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

Sports AI Analyzer Skill

Use this skill to look up World Cup match slugs, resolve them to canonical match IDs, fetch AI prediction data, recompute final probabilities after user adjustments, and hand off to Binance Agentic Wallet prediction trading when the user explicitly wants to place an order.

Quick Workflow

  1. List matches and ask the user to choose. Always call recent-match-options first to get currently available matches with teams and kickoff time. Show the list in a readable form and ask which match to analyze. Do not show raw slug-only examples or default to the first match unless the user already gave a specific slug.
  2. Resolve the selected slug to match details. Call resolve-by-slug and read canonical_match_id, home_team, away_team, kickoff, and status.
  3. Fetch the prediction bundle. Call prediction with cmid, then call news-insights and master-analysis for context. Only pass platform: "PREDICT_FUN" when the user explicitly asks for Predict Fun odds.
  4. Recompute only after user changes correction signals. Call recompute-final with the edited signals; this is stateless and does not write to the database.
  5. Trade only after explicit confirmation. Call market-detail-by-slug to get marketTopicId and market/outcome details, then use binance-agentic-wallet prediction quote and order commands.

CLI

node <skill-dir>/scripts/cli.mjs <command> '<json_params>'
Command Purpose Required params
recent-unfinished List unfinished World Cup match slugs with active market bindings none
recent-match-options List match options with slug, teams, kickoff time, status, and canonical_match_id none
resolve-by-slug Resolve one or more slugs to canonical_match_id and teams slug or slugs
prediction Fetch base model probabilities, enabled signals, market probabilities, and 24h volume cmid
news-insights Fetch AI event cards related to the match cmid
recompute-final Recompute final probabilities with user-edited signals cmid
master-analysis Fetch localized AI master analysis cmid
market-detail-by-slug Fetch prediction-market topic/outcome details before trading slug

Read the full file on GitHub · 115 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 115 lines · 60 tokens per session scan A 944cf5fc0fba

Subscribe to this mod's changes

binance-sports-ai-analyzer is a skill published in the GitHub repository ccxt/ccxt (43,945 stars, last pushed today), licensed MIT. It adds 60 tokens to every session and 1,930 once invoked, about $0.0003 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.

Related

Other skills, from other repositories

analyzing-ransomware-payment-wallets

Traces ransomware cryptocurrency payment flows using blockchain analysis tools such as Chainalysis Reactor, WalletExplorer, and blockchain.com APIs. Identifies wallet clusters, tracks fund movement through mixers and exchanges, and supports law enforcement attribution. Activates for requests involving ransomware…

26zl/cybersec-toolkit · 76 tokens

add-data-sources

Prompts to integrate 70+ new crypto data sources into free-crypto-news, wiring them through the ProviderChain framework with circuit breakers, anomaly detection, and consensus. Covers market data, on-chain analytics, DeFi, derivatives, social, news, Solana ecosystem, L2s, NFTs, prediction markets, RWA, MEV, and more.

nirholas/cryptocurrency.cv · 78 tokens

add-data-source

Step-by-step guide for adding a new data source provider to the free-crypto-news platform. Covers the full lifecycle from API evaluation to adapter implementation, testing, and registration. Use when integrating a new market data, on-chain, social, or news source.

nirholas/cryptocurrency.cv · 56 tokens

scale-to-1m

Step-by-step prompts to prepare free-crypto-news for 1M+ concurrent users. Covers database, job queues, WebSocket scaling, CDN caching, observability, load testing, DDoS protection, graceful degradation, API gateway, multi-region deployment, and disaster recovery.

nirholas/cryptocurrency.cv · 62 tokens

scale-to-million

Comprehensive scaling checklist and action plan to prepare free-crypto-news for 1M+ concurrent users. Use when planning infrastructure upgrades, load testing, or pre-launch scaling sprints. Covers caching, databases, queues, CDN, horizontal scaling, and observability.

nirholas/cryptocurrency.cv · 57 tokens

coin-research

Conduct comprehensive research on any cryptocurrency by pulling coin-specific news, market data, on-chain metrics, trading signals, and sentiment into a structured investment brief. Use when the user wants to understand a specific coin before making a decision. Powered by the free-crypto-news API.

nirholas/cryptocurrency.cv · 58 tokens