# Send Soccer Cli to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/soccer-cli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=soccer-cli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "cmd/game.go",
      "cmd/root.go",
      "cmd/scores.go",
      "cmd/squad.go"
    ],
    "downloadMode": "redirect",
    "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### soccer-cli

A command-line interface to check soccer scores, game details, and player stats using the API-Football service.

### Description

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.

### Installation

Run the installer:
./install.sh

This will compile the Go program and move the soccer-cli binary to ~/.local/bin/.


Configure API Key:
The CLI needs an API key from API-Football.
Create a configuration file at ~/.config/soccer-cli/config.yaml:
mkdir -p ~/.config/soccer-cli
touch ~/.config/soccer-cli/config.yaml

Add your API key to the file in the following format:
apikey: YOUR_API_KEY_HERE

### Usage

Get the latest score for a team:
soccer-cli scores "<team-name>"

Example: soccer-cli scores "Real Madrid"


Get detailed events from a game:
(Use the Fixture ID from the scores command)
soccer-cli game <fixture_id>

Example: soccer-cli game 123456


Get the squad and player stats for a game:
soccer-cli squad <fixture_id>

Example: soccer-cli squad 123456
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jrojas537
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-09T04:47:55.914Z
- Expires at: 2026-05-16T04:47:55.914Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/soccer-cli)
- [Send to Agent page](https://openagent3.xyz/skills/soccer-cli/agent)
- [JSON manifest](https://openagent3.xyz/skills/soccer-cli/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/soccer-cli/agent.md)
- [Download page](https://openagent3.xyz/downloads/soccer-cli)