{
  "schemaVersion": "1.0",
  "item": {
    "slug": "knhm-match-center",
    "name": "KNHB Match Center",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/tader/knhm-match-center",
    "canonicalUrl": "https://clawhub.ai/tader/knhm-match-center",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/knhm-match-center",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=knhm-match-center",
    "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-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/knhm-match-center"
    },
    "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/knhm-match-center",
    "agentPageUrl": "https://openagent3.xyz/skills/knhm-match-center/agent",
    "manifestUrl": "https://openagent3.xyz/skills/knhm-match-center/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/knhm-match-center/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": "KNHB Match Center",
        "body": "Query the Dutch Hockey Federation (KNHB) Match Center API for clubs, teams, and matches."
      },
      {
        "title": "API Base URL",
        "body": "https://publicaties.hockeyweerelt.nl/mc"
      },
      {
        "title": "List all clubs",
        "body": "curl -s \"https://publicaties.hockeyweerelt.nl/mc/clubs\" | jq '.data[]'\n\nResponse includes: id, name, abbreviation, city, district.name, logo, hockey_types[]"
      },
      {
        "title": "Search clubs by name or city",
        "body": "curl -s \"https://publicaties.hockeyweerelt.nl/mc/clubs\" | jq '.data[] | select(.name | test(\"Westland\"; \"i\"))'\ncurl -s \"https://publicaties.hockeyweerelt.nl/mc/clubs\" | jq '.data[] | select(.city | test(\"Delft\"; \"i\"))'"
      },
      {
        "title": "List teams for a club",
        "body": "curl -s \"https://publicaties.hockeyweerelt.nl/mc/clubs/{clubId}/teams\" | jq '.data[]'\n\nResponse includes: id, name, short_name, type (Veld/Zaal), category_group, category_name, next_match_date"
      },
      {
        "title": "Get upcoming matches for a team",
        "body": "curl -s \"https://publicaties.hockeyweerelt.nl/mc/teams/{teamId}/matches/upcoming\" | jq '.data[]'"
      },
      {
        "title": "Get official (played) matches for a team",
        "body": "curl -s \"https://publicaties.hockeyweerelt.nl/mc/teams/{teamId}/matches/official\" | jq '.data[]'\n\nMatch response includes:\n\ndatetime — ISO 8601 format (UTC)\nlocation.city, location.street, location.description\nhome_team.name, home_team.club_name\naway_team.name, away_team.club_name\nhome_score, away_score — null for upcoming matches\ncompetition, poule, status, field"
      },
      {
        "title": "Find a club and list its teams",
        "body": "# Find club ID\nCLUB_ID=$(curl -s \"https://publicaties.hockeyweerelt.nl/mc/clubs\" | jq -r '.data[] | select(.name | test(\"Westland\"; \"i\")) | .id' | head -1)\n\n# List teams\ncurl -s \"https://publicaties.hockeyweerelt.nl/mc/clubs/${CLUB_ID}/teams\" | jq -r '.data[] | \"\\(.id) \\(.name) (\\(.type)) - next: \\(.next_match_date)\"'"
      },
      {
        "title": "Get next match for a specific team",
        "body": "curl -s \"https://publicaties.hockeyweerelt.nl/mc/teams/{teamId}/matches/upcoming\" | jq '.data[0] | {\n  date: .datetime,\n  home: .home_team.name,\n  away: .away_team.name,\n  location: .location.city,\n  field: .field\n}'"
      },
      {
        "title": "Format match schedule nicely",
        "body": "curl -s \"https://publicaties.hockeyweerelt.nl/mc/teams/{teamId}/matches/upcoming\" | jq -r '.data[] | \"\\(.datetime | split(\"T\")[0]) \\(.datetime | split(\"T\")[1] | split(\".\")[0] | .[0:5]) - \\(.home_team.name) vs \\(.away_team.name) @ \\(.location.city)\"'"
      },
      {
        "title": "Team Categories",
        "body": "Senioren: Adult teams (H1, D1, etc.)\nJunioren: U18-U21\nJongste Jeugd: Youth teams (MO/JO prefixes)\n\nMO = Meisjes Onder (Girls Under)\nJO = Jongens Onder (Boys Under)\nExample: MO11 = Girls Under 11"
      },
      {
        "title": "Notes",
        "body": "Datetime is in UTC — add 1 hour for Amsterdam winter time (CET), 2 hours for summer (CEST)\nUse date command or proper date library to convert and get correct day of week\ntype: \"Veld\" = outdoor field hockey, type: \"Zaal\" = indoor hockey\nTeams have separate IDs for Veld and Zaal — always query both to get complete schedule\nVeld season: ~Sep-Jun (outdoor), Zaal season: ~Nov-Mar (indoor)"
      }
    ],
    "body": "KNHB Match Center\n\nQuery the Dutch Hockey Federation (KNHB) Match Center API for clubs, teams, and matches.\n\nAPI Base URL\nhttps://publicaties.hockeyweerelt.nl/mc\n\nEndpoints\nList all clubs\ncurl -s \"https://publicaties.hockeyweerelt.nl/mc/clubs\" | jq '.data[]'\n\n\nResponse includes: id, name, abbreviation, city, district.name, logo, hockey_types[]\n\nSearch clubs by name or city\ncurl -s \"https://publicaties.hockeyweerelt.nl/mc/clubs\" | jq '.data[] | select(.name | test(\"Westland\"; \"i\"))'\ncurl -s \"https://publicaties.hockeyweerelt.nl/mc/clubs\" | jq '.data[] | select(.city | test(\"Delft\"; \"i\"))'\n\nList teams for a club\ncurl -s \"https://publicaties.hockeyweerelt.nl/mc/clubs/{clubId}/teams\" | jq '.data[]'\n\n\nResponse includes: id, name, short_name, type (Veld/Zaal), category_group, category_name, next_match_date\n\nGet upcoming matches for a team\ncurl -s \"https://publicaties.hockeyweerelt.nl/mc/teams/{teamId}/matches/upcoming\" | jq '.data[]'\n\nGet official (played) matches for a team\ncurl -s \"https://publicaties.hockeyweerelt.nl/mc/teams/{teamId}/matches/official\" | jq '.data[]'\n\n\nMatch response includes:\n\ndatetime — ISO 8601 format (UTC)\nlocation.city, location.street, location.description\nhome_team.name, home_team.club_name\naway_team.name, away_team.club_name\nhome_score, away_score — null for upcoming matches\ncompetition, poule, status, field\nCommon Queries\nFind a club and list its teams\n# Find club ID\nCLUB_ID=$(curl -s \"https://publicaties.hockeyweerelt.nl/mc/clubs\" | jq -r '.data[] | select(.name | test(\"Westland\"; \"i\")) | .id' | head -1)\n\n# List teams\ncurl -s \"https://publicaties.hockeyweerelt.nl/mc/clubs/${CLUB_ID}/teams\" | jq -r '.data[] | \"\\(.id) \\(.name) (\\(.type)) - next: \\(.next_match_date)\"'\n\nGet next match for a specific team\ncurl -s \"https://publicaties.hockeyweerelt.nl/mc/teams/{teamId}/matches/upcoming\" | jq '.data[0] | {\n  date: .datetime,\n  home: .home_team.name,\n  away: .away_team.name,\n  location: .location.city,\n  field: .field\n}'\n\nFormat match schedule nicely\ncurl -s \"https://publicaties.hockeyweerelt.nl/mc/teams/{teamId}/matches/upcoming\" | jq -r '.data[] | \"\\(.datetime | split(\"T\")[0]) \\(.datetime | split(\"T\")[1] | split(\".\")[0] | .[0:5]) - \\(.home_team.name) vs \\(.away_team.name) @ \\(.location.city)\"'\n\nTeam Categories\nSenioren: Adult teams (H1, D1, etc.)\nJunioren: U18-U21\nJongste Jeugd: Youth teams (MO/JO prefixes)\nMO = Meisjes Onder (Girls Under)\nJO = Jongens Onder (Boys Under)\nExample: MO11 = Girls Under 11\nNotes\nDatetime is in UTC — add 1 hour for Amsterdam winter time (CET), 2 hours for summer (CEST)\nUse date command or proper date library to convert and get correct day of week\ntype: \"Veld\" = outdoor field hockey, type: \"Zaal\" = indoor hockey\nTeams have separate IDs for Veld and Zaal — always query both to get complete schedule\nVeld season: ~Sep-Jun (outdoor), Zaal season: ~Nov-Mar (indoor)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/tader/knhm-match-center",
    "publisherUrl": "https://clawhub.ai/tader/knhm-match-center",
    "owner": "tader",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/knhm-match-center",
    "downloadUrl": "https://openagent3.xyz/downloads/knhm-match-center",
    "agentUrl": "https://openagent3.xyz/skills/knhm-match-center/agent",
    "manifestUrl": "https://openagent3.xyz/skills/knhm-match-center/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/knhm-match-center/agent.md"
  }
}