{
  "schemaVersion": "1.0",
  "item": {
    "slug": "tempest-weather",
    "name": "Tempest Weather",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/wranglerdriver/tempest-weather",
    "canonicalUrl": "https://clawhub.ai/wranglerdriver/tempest-weather",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/tempest-weather",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tempest-weather",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/tempest-api.md",
      "scripts/get_tempest_weather.py",
      "scripts/package_clean.sh",
      "tests/fixtures/obs_device.json"
    ],
    "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",
      "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/tempest-weather"
    },
    "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/tempest-weather",
    "agentPageUrl": "https://openagent3.xyz/skills/tempest-weather/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tempest-weather/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tempest-weather/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": "Tempest Weather",
        "body": "Use this skill to fetch current conditions from a Tempest station/device or retrieve historical station statistics (day/month/year) from the Tempest Stats API."
      },
      {
        "title": "Run the fetch script",
        "body": "Use:\n\npython3 scripts/get_tempest_weather.py\n\nThe script reads configuration from environment variables by default, if both station and device id are set device_id is used by default:\n\nTEMPEST_API_TOKEN (required)\nTEMPEST_STATION_ID (optional if TEMPEST_DEVICE_ID is set)\nTEMPEST_DEVICE_ID (optional if TEMPEST_STATION_ID is set)\nTEMPEST_UNITS (optional: metric or us, default us)"
      },
      {
        "title": "Useful command options",
        "body": "# Explicit station/token (current observations)\npython3 scripts/get_tempest_weather.py --station-id 12345 --token \"$TEMPEST_API_TOKEN\"\n\n# Explicit device/token (current observations)\npython3 scripts/get_tempest_weather.py --device-id 67890 --token \"$TEMPEST_API_TOKEN\"\n\n# Historical stats for current local day/month/year (defaults to \"now\")\npython3 scripts/get_tempest_weather.py --stats day\npython3 scripts/get_tempest_weather.py --stats month\npython3 scripts/get_tempest_weather.py --stats year\n\n# Historical stats for a specific target date period\npython3 scripts/get_tempest_weather.py --stats day --date 2026-02-23\npython3 scripts/get_tempest_weather.py --stats month --date 2026-02\npython3 scripts/get_tempest_weather.py --stats year --date 2025\n\n# Metric output\npython3 scripts/get_tempest_weather.py --units metric\n\n# JSON only (machine-friendly)\npython3 scripts/get_tempest_weather.py --json"
      },
      {
        "title": "Output behavior",
        "body": "Emit concise JSON (always)\nInclude a short human summary unless --json is used\nInclude timestamp and source URL for traceability\nFor --stats, return the matched historical row from stats_day, stats_month, or stats_year"
      },
      {
        "title": "If data fetch fails",
        "body": "Check token validity and station/device ID\nRetry once for transient network errors\nReturn a short actionable error message"
      },
      {
        "title": "Field mapping reference",
        "body": "For Tempest observation index mapping and response notes, read:\n\nreferences/tempest-api.md"
      },
      {
        "title": "License",
        "body": "LICENSE (MIT)"
      },
      {
        "title": "Source",
        "body": "https://github.com/wranglerdriver/tempest-weather"
      }
    ],
    "body": "Tempest Weather\n\nUse this skill to fetch current conditions from a Tempest station/device or retrieve historical station statistics (day/month/year) from the Tempest Stats API.\n\nRun the fetch script\n\nUse:\n\npython3 scripts/get_tempest_weather.py\n\n\nThe script reads configuration from environment variables by default, if both station and device id are set device_id is used by default:\n\nTEMPEST_API_TOKEN (required)\nTEMPEST_STATION_ID (optional if TEMPEST_DEVICE_ID is set)\nTEMPEST_DEVICE_ID (optional if TEMPEST_STATION_ID is set)\nTEMPEST_UNITS (optional: metric or us, default us)\nUseful command options\n# Explicit station/token (current observations)\npython3 scripts/get_tempest_weather.py --station-id 12345 --token \"$TEMPEST_API_TOKEN\"\n\n# Explicit device/token (current observations)\npython3 scripts/get_tempest_weather.py --device-id 67890 --token \"$TEMPEST_API_TOKEN\"\n\n# Historical stats for current local day/month/year (defaults to \"now\")\npython3 scripts/get_tempest_weather.py --stats day\npython3 scripts/get_tempest_weather.py --stats month\npython3 scripts/get_tempest_weather.py --stats year\n\n# Historical stats for a specific target date period\npython3 scripts/get_tempest_weather.py --stats day --date 2026-02-23\npython3 scripts/get_tempest_weather.py --stats month --date 2026-02\npython3 scripts/get_tempest_weather.py --stats year --date 2025\n\n# Metric output\npython3 scripts/get_tempest_weather.py --units metric\n\n# JSON only (machine-friendly)\npython3 scripts/get_tempest_weather.py --json\n\nOutput behavior\nEmit concise JSON (always)\nInclude a short human summary unless --json is used\nInclude timestamp and source URL for traceability\nFor --stats, return the matched historical row from stats_day, stats_month, or stats_year\nIf data fetch fails\nCheck token validity and station/device ID\nRetry once for transient network errors\nReturn a short actionable error message\nField mapping reference\n\nFor Tempest observation index mapping and response notes, read:\n\nreferences/tempest-api.md\nLicense\nLICENSE (MIT)\nSource\nhttps://github.com/wranglerdriver/tempest-weather"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/wranglerdriver/tempest-weather",
    "publisherUrl": "https://clawhub.ai/wranglerdriver/tempest-weather",
    "owner": "wranglerdriver",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/tempest-weather",
    "downloadUrl": "https://openagent3.xyz/downloads/tempest-weather",
    "agentUrl": "https://openagent3.xyz/skills/tempest-weather/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tempest-weather/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tempest-weather/agent.md"
  }
}