{
  "schemaVersion": "1.0",
  "item": {
    "slug": "sports-odds",
    "name": "Sports Odds",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ianalloway/sports-odds",
    "canonicalUrl": "https://clawhub.ai/ianalloway/sports-odds",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/sports-odds",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sports-odds",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/sports-odds"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/sports-odds",
    "agentPageUrl": "https://openagent3.xyz/skills/sports-odds/agent",
    "manifestUrl": "https://openagent3.xyz/skills/sports-odds/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/sports-odds/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Sports Betting Odds",
        "body": "Get live betting odds from multiple sportsbooks using The Odds API. Free tier includes 500 requests/month."
      },
      {
        "title": "Setup",
        "body": "Get a free API key at https://the-odds-api.com/\nSet the environment variable: export ODDS_API_KEY=your_key_here"
      },
      {
        "title": "Available Sports",
        "body": "List all available sports:\n\ncurl -s \"https://api.the-odds-api.com/v4/sports?apiKey=$ODDS_API_KEY\" | jq '.[] | {key, title, active}'\n\nCommon sport keys:\n\namericanfootball_nfl - NFL\nbasketball_nba - NBA\nbaseball_mlb - MLB\nicehockey_nhl - NHL\nsoccer_epl - English Premier League\nsoccer_usa_mls - MLS"
      },
      {
        "title": "Get Odds",
        "body": "Get current odds for a sport (NFL example):\n\ncurl -s \"https://api.the-odds-api.com/v4/sports/americanfootball_nfl/odds?apiKey=$ODDS_API_KEY&regions=us&markets=h2h,spreads,totals\" | jq '.'"
      },
      {
        "title": "Compact odds view:",
        "body": "curl -s \"https://api.the-odds-api.com/v4/sports/americanfootball_nfl/odds?apiKey=$ODDS_API_KEY&regions=us&markets=h2h\" | jq '.[] | {game: \"\\(.home_team) vs \\(.away_team)\", commence: .commence_time, bookmakers: [.bookmakers[] | {name: .title, odds: .markets[0].outcomes}]}'"
      },
      {
        "title": "Compare spreads across books:",
        "body": "curl -s \"https://api.the-odds-api.com/v4/sports/basketball_nba/odds?apiKey=$ODDS_API_KEY&regions=us&markets=spreads\" | jq '.[] | {matchup: \"\\(.away_team) @ \\(.home_team)\", books: [.bookmakers[] | {book: .title, spread: .markets[0].outcomes[0]}]}'"
      },
      {
        "title": "Markets",
        "body": "h2h - Moneyline (head-to-head)\nspreads - Point spreads\ntotals - Over/under totals"
      },
      {
        "title": "Regions",
        "body": "us - US sportsbooks (DraftKings, FanDuel, BetMGM, etc.)\nuk - UK bookmakers\neu - European bookmakers\nau - Australian bookmakers"
      },
      {
        "title": "Best Line Finder",
        "body": "Find the best available line for a game:\n\n# Get best moneyline odds\ncurl -s \"https://api.the-odds-api.com/v4/sports/basketball_nba/odds?apiKey=$ODDS_API_KEY&regions=us&markets=h2h\" | jq '\n  .[] | \n  {\n    game: \"\\(.away_team) @ \\(.home_team)\",\n    best_home: (.bookmakers | map(.markets[0].outcomes[] | select(.name == .home_team)) | max_by(.price)),\n    best_away: (.bookmakers | map(.markets[0].outcomes[] | select(.name == .away_team)) | max_by(.price))\n  }\n'"
      },
      {
        "title": "Check API Usage",
        "body": "curl -s \"https://api.the-odds-api.com/v4/sports?apiKey=$ODDS_API_KEY\" -D - 2>&1 | grep -i \"x-requests\"\n\nHeaders show: x-requests-used and x-requests-remaining"
      },
      {
        "title": "Tips",
        "body": "Cache responses to save API calls\nUse oddsFormat=american or oddsFormat=decimal parameter\nFree tier: 500 requests/month, paid plans available for more"
      }
    ],
    "body": "Sports Betting Odds\n\nGet live betting odds from multiple sportsbooks using The Odds API. Free tier includes 500 requests/month.\n\nSetup\nGet a free API key at https://the-odds-api.com/\nSet the environment variable: export ODDS_API_KEY=your_key_here\nAvailable Sports\n\nList all available sports:\n\ncurl -s \"https://api.the-odds-api.com/v4/sports?apiKey=$ODDS_API_KEY\" | jq '.[] | {key, title, active}'\n\n\nCommon sport keys:\n\namericanfootball_nfl - NFL\nbasketball_nba - NBA\nbaseball_mlb - MLB\nicehockey_nhl - NHL\nsoccer_epl - English Premier League\nsoccer_usa_mls - MLS\nGet Odds\n\nGet current odds for a sport (NFL example):\n\ncurl -s \"https://api.the-odds-api.com/v4/sports/americanfootball_nfl/odds?apiKey=$ODDS_API_KEY&regions=us&markets=h2h,spreads,totals\" | jq '.'\n\nCompact odds view:\ncurl -s \"https://api.the-odds-api.com/v4/sports/americanfootball_nfl/odds?apiKey=$ODDS_API_KEY&regions=us&markets=h2h\" | jq '.[] | {game: \"\\(.home_team) vs \\(.away_team)\", commence: .commence_time, bookmakers: [.bookmakers[] | {name: .title, odds: .markets[0].outcomes}]}'\n\nCompare spreads across books:\ncurl -s \"https://api.the-odds-api.com/v4/sports/basketball_nba/odds?apiKey=$ODDS_API_KEY&regions=us&markets=spreads\" | jq '.[] | {matchup: \"\\(.away_team) @ \\(.home_team)\", books: [.bookmakers[] | {book: .title, spread: .markets[0].outcomes[0]}]}'\n\nMarkets\nh2h - Moneyline (head-to-head)\nspreads - Point spreads\ntotals - Over/under totals\nRegions\nus - US sportsbooks (DraftKings, FanDuel, BetMGM, etc.)\nuk - UK bookmakers\neu - European bookmakers\nau - Australian bookmakers\nBest Line Finder\n\nFind the best available line for a game:\n\n# Get best moneyline odds\ncurl -s \"https://api.the-odds-api.com/v4/sports/basketball_nba/odds?apiKey=$ODDS_API_KEY&regions=us&markets=h2h\" | jq '\n  .[] | \n  {\n    game: \"\\(.away_team) @ \\(.home_team)\",\n    best_home: (.bookmakers | map(.markets[0].outcomes[] | select(.name == .home_team)) | max_by(.price)),\n    best_away: (.bookmakers | map(.markets[0].outcomes[] | select(.name == .away_team)) | max_by(.price))\n  }\n'\n\nCheck API Usage\ncurl -s \"https://api.the-odds-api.com/v4/sports?apiKey=$ODDS_API_KEY\" -D - 2>&1 | grep -i \"x-requests\"\n\n\nHeaders show: x-requests-used and x-requests-remaining\n\nTips\nCache responses to save API calls\nUse oddsFormat=american or oddsFormat=decimal parameter\nFree tier: 500 requests/month, paid plans available for more"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ianalloway/sports-odds",
    "publisherUrl": "https://clawhub.ai/ianalloway/sports-odds",
    "owner": "ianalloway",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/sports-odds",
    "downloadUrl": "https://openagent3.xyz/downloads/sports-odds",
    "agentUrl": "https://openagent3.xyz/skills/sports-odds/agent",
    "manifestUrl": "https://openagent3.xyz/skills/sports-odds/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/sports-odds/agent.md"
  }
}