Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

World Cup 2026 Odds Tracker

v1.1.0

Aggregate FIFA World Cup 2026 odds across sportsbooks and prediction markets. Track outright winner futures, group stage odds, and match lines. Compare Polym...

0· 108·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for rsquaredsolutions2026/world-cup-2026-odds.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "World Cup 2026 Odds Tracker" (rsquaredsolutions2026/world-cup-2026-odds) from ClawHub.
Skill page: https://clawhub.ai/rsquaredsolutions2026/world-cup-2026-odds
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: curl, jq
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install world-cup-2026-odds

ClawHub CLI

Package manager switcher

npx clawhub@latest install world-cup-2026-odds
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
!
Purpose & Capability
The description promises aggregation across sportsbooks and prediction markets (mentions Polymarket, group stage odds, match lines). The runtime SKILL.md only contains a single curl against https://api.the-odds-api.com to fetch outright futures from sportsbooks; there is no code or instructions to fetch or compare prediction-market data (Polymarket) or match/group-stage lines. Registry metadata at the top listed no required env vars, but the SKILL.md declares ODDS_API_KEY — this mismatch further weakens coherence.
Instruction Scope
Instructions are limited and explicit: run curl to the-odds-api and process the JSON with jq. They do not reference other files, system paths, or unrelated environment variables. However, they only implement the 'Outright Winner Futures' operation and do not implement other advertised operations (group stage, match lines, prediction markets), which is scope-incomplete and may mislead users.
Install Mechanism
This is an instruction-only skill with no install spec and no code files. It requires curl and jq to be present on PATH — this is proportionate and low install risk.
!
Credentials
The SKILL.md declares a required credential ODDS_API_KEY (env ODDS_API_KEY) which is proportionate to calling The Odds API. However, the registry metadata summary provided earlier lists 'Required env vars: none', creating an inconsistency between declared runtime credentials and registry-level requirements. Confirm which view is authoritative before providing API keys.
Persistence & Privilege
The skill is not always-enabled and does not request privileged persistence. It can be user-invoked and allows model invocation (the platform default). There is no install script or behavior that modifies other skills or system-wide settings.
What to consider before installing
This skill will make network requests to https://api.the-odds-api.com and (per SKILL.md) expects you to supply an ODDS_API_KEY. Before installing: 1) Verify the registry metadata vs SKILL.md — the registry summary omitted the required ODDS_API_KEY, so confirm the platform will surface and securely store the key. 2) If you expect prediction-market data (Polymarket) or match/group-stage lines, ask the author or inspect a fuller SKILL.md — those sources are not implemented in the provided instructions. 3) Because the source is unknown, validate the claimed author (AgentBets) and the linked guide before entering keys. 4) If you proceed, only provide a least-privilege API key (and consider creating a separate key/account with rate limits and minimal permissions). If you need a firmer assessment, ask the publisher for a full SKILL.md that includes all advertised operations and an explicit manifest matching registry metadata.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🏆 Clawdis
Binscurl, jq
agentbetsvk976f0qj5t8nradv9jhxjepfa983jvn7bettingvk976f0qj5t8nradv9jhxjepfa983jvn7latestvk976f0qj5t8nradv9jhxjepfa983jvn7openclawvk976f0qj5t8nradv9jhxjepfa983jvn7prediction-marketsvk976f0qj5t8nradv9jhxjepfa983jvn7sports-bettingvk976f0qj5t8nradv9jhxjepfa983jvn7
108downloads
0stars
2versions
Updated 1mo ago
v1.1.0
MIT-0

World Cup 2026 Odds Tracker

Aggregate FIFA World Cup 2026 betting odds from sportsbooks and prediction markets into one unified view.

When to Use

Use this skill when the user asks about:

  • World Cup 2026 odds, futures, or predictions
  • Who will win the World Cup
  • World Cup group stage or knockout match odds
  • Comparing sportsbook vs prediction market prices for World Cup outcomes
  • Tournament favorites, dark horses, or underdogs
  • World Cup betting value or price discrepancies

Operations

1. Outright Winner Futures

Fetch which teams are favored to win the 2026 World Cup across all sportsbooks:

curl -s "https://api.the-odds-api.com/v4/sports/soccer_fifa_world_cup_winner/odds?apiKey=$ODDS_API_KEY&regions=us&markets=outrights&oddsFormat=american" \
  | jq '[.[] | {
    market: .away_team // "Outright Winner",
    books: [.bookmakers[] | {
      name: .title,
      selections: [.markets[0].outcomes[] | {team: .name, odds: .price}] | sort_by(.odds) | reverse
    }]
  }] | .[0].books[0].selections[:15] | map({team, odds, implied_prob: (if .odds > 0 then (100 / (.odds + 100) * 100 | round / 100) else (-.odds / (-.odds + 100) * 100 | round / 100) end)})'

## About

Built by [AgentBets](https://agentbets.ai) — full tutorial at [agentbets.ai/guides/openclaw-world-cup-2026-odds-skill/](https://agentbets.ai/guides/openclaw-world-cup-2026-odds-skill/).

Part of the [OpenClaw Skills series](https://agentbets.ai/guides/#openclaw-skills) for the [Agent Betting Stack](https://agentbets.ai/guides/agent-betting-stack/).

Comments

Loading comments...