worldcup-cli

worldcup-cli is a skill for Claude Code, Codex from ItamarZand88/CLI-Anything-WEB. It costs 99 tokens per session (827 once invoked), scanned A, original, MIT.

A read-only command-line tool for FIFA World Cup 2026 information, including matches, qualified nations, squads, group tables, and bookmaker odds. FIFA is the international organisation that runs the World Cup.

In plain words
What is it for?
Use it to list fixtures, inspect a match, find teams and player rosters, check group standings, or view head-to-head and totals odds. It does not place bets.
Why use it?
It avoids looking through separate sports websites or manually combining match, team, standings, and odds information.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/itamarzand88/cli-anything-web/worldcup-cli
Any agent
npx skills add ItamarZand88/CLI-Anything-WEB --skill worldcup-cli
Clone the repo
git clone --depth 1 https://github.com/ItamarZand88/CLI-Anything-WEB

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 worldcup-cli

README.md
[![agentmods](https://agentmods.dev/badge/skills/itamarzand88/cli-anything-web/worldcup-cli.svg)](https://agentmods.dev/skills/itamarzand88/cli-anything-web/worldcup-cli)
Your own site
<a href="https://agentmods.dev/skills/itamarzand88/cli-anything-web/worldcup-cli"><img src="https://agentmods.dev/badge/skills/itamarzand88/cli-anything-web/worldcup-cli.svg" alt="Measured on agentmods" height="20"></a>
Per session 99 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 827 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00099 $0.00827
Opus 5 $0.00049 $0.00413
Sonnet 5 $0.00020 $0.00165
Haiku 4.5 $0.00010 $0.00083

Measured 4d ago against content hash ed8fb4c1bfb3, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

worldcup-cli 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 4d 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.

.claude/skills/worldcup-cli/SKILL.md · 64 lines

How it starts

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

cli-web-worldcup

FIFA World Cup 2026 on the command line — read-only. Matches, nations, squads, group standings, and bookmaker odds. Install: pip install cli-web-worldcup

Data sources: ESPN public API (no auth) for everything except odds; The Odds API (free key) for odds. No bets are ever placed.

Commands

  • fixtures list — World Cup matches. Options: --team TEXT (name or 3-letter code, e.g. MEX), --dates YYYYMMDD or YYYYMMDD-YYYYMMDD (default: full tournament), --limit N
  • fixtures get <event_id> — one match's detail (status, venue, odds line)
  • teams list — all 48 qualified nations
  • teams get <id|code|name> — one nation (e.g. MEX, Mexico, 203)
  • players roster <id|code|name> — a nation's squad
  • standings list — group tables. Option: --group A
  • odds list — bookmaker head-to-head odds. Options: --regions us|uk|eu|au, --markets h2h,totals, --odds-format decimal|american, --api-key KEY. Requires a free key from https://the-odds-api.com via CLI_WEB_WORLDCUP_ODDS_API_KEY or --api-key.

Examples

# Mexico's matches, as JSON
cli-web-worldcup fixtures list --team MEX --json

# Group A table
cli-web-worldcup standings list --group A

# Mexico's 26-player squad
cli-web-worldcup players roster Mexico --json

# Today's matches (tournament opens 2026-06-11)
cli-web-worldcup fixtures list --dates 20260611

# Odds (after setting a key)
export CLI_WEB_WORLDCUP_ODDS_API_KEY=...; cli-web-worldcup odds list --json

JSON output

Add --json for {"success": true, "data": [...]}, or --jsonl on list commands for one compact object per line. Errors are structured too: {"error": true, "code": "NOT_FOUND", "message": "..."}.

Exit codes: 0 ok · 2 usage · 3 auth (missing/invalid odds key) · 4 not-found (unknown team/match) · 5 rate-limit · 6 server · 7 network.

Utilities

cli-web-worldcup doctor [--json] diagnoses local setup. cli-web-worldcup mcp-serve exposes the commands as MCP tools over stdio. Running with no arguments opens an interactive REPL.

Read the full file on GitHub · 64 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. 4d ago First seen · 64 lines · 99 tokens per session scan A ed8fb4c1bfb3

Subscribe to this mod's changes

worldcup-cli is a skill published in the GitHub repository ItamarZand88/CLI-Anything-WEB (216 stars, last pushed 11d ago), licensed MIT. It adds 99 tokens to every session and 827 once invoked, about $0.0005 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

e2e-testing

End-to-end testing for Falcon Foundry apps using Playwright and @crowdstrike/foundry-playwright. TRIGGER when user asks to "add e2e tests", "add playwright tests", "write end-to-end tests", "test my app", or mentions "e2e", "playwright", or "end-to-end" in the context of testing a Foundry app. DO NOT TRIGGER during…

CrowdStrike/foundry-skills · 116 tokens

e2e-reviewer

Use when reviewing Playwright or Cypress E2E specs, Page Objects (POM), PRs, pull requests, patches, diffs, or changed test files — asked to review tests, audit test quality, or find weak, flaky, or silently-passing tests; when tests pass CI but prove nothing or miss bugs; when auditing missing awaits, vacuous or…

voidmatcha/e2e-skills · 115 tokens

cypress-debugger

Use when a Cypress end-to-end test has already run and failed and the user wants the root cause and a concrete fix. Trigger on a failing Cypress spec, Timed-out-retrying command, unresolved selector, cy.intercept alias or request race, suite-breaking hook, retry-only flake, hydration or timing race, or a…

voidmatcha/e2e-skills · 158 tokens

playwright-debugger

Use when a Playwright end-to-end test has already run and failed and the user wants the root cause and a concrete fix. Trigger on a failing Playwright spec, TimeoutError, broken or ambiguous selector, post-deploy suite failure, retry-only flake, hydration or timing race, or a passes-locally-but-fails-in-CI split.…

voidmatcha/e2e-skills · 163 tokens

playwright-test-generator

Use when someone wants to add, write, create, or scaffold new Playwright end-to-end tests for a page, flow, form, component, uncovered route, or first-project setup. The skill analyzes coverage gaps, explores live pages only on local/disposable or externally isolated approved non-production targets, proposes scenarios…

voidmatcha/e2e-skills · 140 tokens

piyaz

Use when the user wants to plan, decompose, track, or resume a multi-task project: scoping a new idea, importing or onboarding an existing repo or workspace, asking what to work on / what's next / what's blocked / where they left off, reporting task completion, dispatching work in parallel, or planning a draft task.…

FrkAk/piyaz · 155 tokens