{
  "schemaVersion": "1.0",
  "item": {
    "slug": "soccer-cli",
    "name": "Soccer Cli",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/jrojas537/soccer-cli",
    "canonicalUrl": "https://clawhub.ai/jrojas537/soccer-cli",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/soccer-cli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=soccer-cli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "cmd/game.go",
      "cmd/root.go",
      "cmd/scores.go",
      "cmd/squad.go"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "soccer-cli",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T04:47:55.914Z",
      "expiresAt": "2026-05-16T04:47:55.914Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=soccer-cli",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=soccer-cli",
        "contentDisposition": "attachment; filename=\"soccer-cli-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "soccer-cli"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/soccer-cli"
    },
    "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/soccer-cli",
    "agentPageUrl": "https://openagent3.xyz/skills/soccer-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/soccer-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/soccer-cli/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "soccer-cli",
        "body": "A command-line interface to check soccer scores, game details, and player stats using the API-Football service."
      },
      {
        "title": "Description",
        "body": "This skill provides a set of commands to quickly retrieve football data directly in your terminal. You can get the latest score for your favorite team, see detailed events from a specific match (like goals and cards), and view the full squad with player ratings and minutes played."
      },
      {
        "title": "Installation",
        "body": "Run the installer:\n./install.sh\n\nThis will compile the Go program and move the soccer-cli binary to ~/.local/bin/.\n\n\nConfigure API Key:\nThe CLI needs an API key from API-Football.\nCreate a configuration file at ~/.config/soccer-cli/config.yaml:\nmkdir -p ~/.config/soccer-cli\ntouch ~/.config/soccer-cli/config.yaml\n\nAdd your API key to the file in the following format:\napikey: YOUR_API_KEY_HERE"
      },
      {
        "title": "Usage",
        "body": "Get the latest score for a team:\nsoccer-cli scores \"<team-name>\"\n\nExample: soccer-cli scores \"Real Madrid\"\n\n\nGet detailed events from a game:\n(Use the Fixture ID from the scores command)\nsoccer-cli game <fixture_id>\n\nExample: soccer-cli game 123456\n\n\nGet the squad and player stats for a game:\nsoccer-cli squad <fixture_id>\n\nExample: soccer-cli squad 123456"
      }
    ],
    "body": "soccer-cli\n\nA command-line interface to check soccer scores, game details, and player stats using the API-Football service.\n\nDescription\n\nThis skill provides a set of commands to quickly retrieve football data directly in your terminal. You can get the latest score for your favorite team, see detailed events from a specific match (like goals and cards), and view the full squad with player ratings and minutes played.\n\nInstallation\n\nRun the installer:\n\n./install.sh\n\n\nThis will compile the Go program and move the soccer-cli binary to ~/.local/bin/.\n\nConfigure API Key: The CLI needs an API key from API-Football.\n\nCreate a configuration file at ~/.config/soccer-cli/config.yaml:\n\nmkdir -p ~/.config/soccer-cli\ntouch ~/.config/soccer-cli/config.yaml\n\n\nAdd your API key to the file in the following format:\n\napikey: YOUR_API_KEY_HERE\n\nUsage\n\nGet the latest score for a team:\n\nsoccer-cli scores \"<team-name>\"\n\n\nExample: soccer-cli scores \"Real Madrid\"\n\nGet detailed events from a game: (Use the Fixture ID from the scores command)\n\nsoccer-cli game <fixture_id>\n\n\nExample: soccer-cli game 123456\n\nGet the squad and player stats for a game:\n\nsoccer-cli squad <fixture_id>\n\n\nExample: soccer-cli squad 123456"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/jrojas537/soccer-cli",
    "publisherUrl": "https://clawhub.ai/jrojas537/soccer-cli",
    "owner": "jrojas537",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/soccer-cli",
    "downloadUrl": "https://openagent3.xyz/downloads/soccer-cli",
    "agentUrl": "https://openagent3.xyz/skills/soccer-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/soccer-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/soccer-cli/agent.md"
  }
}