# Send Tempest Weather 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": "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": {
    "downloadUrl": "/downloads/tempest-weather",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tempest-weather",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/tempest-api.md",
      "scripts/get_tempest_weather.py",
      "scripts/package_clean.sh",
      "tests/fixtures/obs_device.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "tempest-weather",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T21:03:38.325Z",
      "expiresAt": "2026-05-16T21:03:38.325Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tempest-weather",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tempest-weather",
        "contentDisposition": "attachment; filename=\"tempest-weather-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "tempest-weather"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Tempest Weather

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.

### Run the fetch script

Use:

python3 scripts/get_tempest_weather.py

The script reads configuration from environment variables by default, if both station and device id are set device_id is used by default:

TEMPEST_API_TOKEN (required)
TEMPEST_STATION_ID (optional if TEMPEST_DEVICE_ID is set)
TEMPEST_DEVICE_ID (optional if TEMPEST_STATION_ID is set)
TEMPEST_UNITS (optional: metric or us, default us)

### Useful command options

# Explicit station/token (current observations)
python3 scripts/get_tempest_weather.py --station-id 12345 --token "$TEMPEST_API_TOKEN"

# Explicit device/token (current observations)
python3 scripts/get_tempest_weather.py --device-id 67890 --token "$TEMPEST_API_TOKEN"

# Historical stats for current local day/month/year (defaults to "now")
python3 scripts/get_tempest_weather.py --stats day
python3 scripts/get_tempest_weather.py --stats month
python3 scripts/get_tempest_weather.py --stats year

# Historical stats for a specific target date period
python3 scripts/get_tempest_weather.py --stats day --date 2026-02-23
python3 scripts/get_tempest_weather.py --stats month --date 2026-02
python3 scripts/get_tempest_weather.py --stats year --date 2025

# Metric output
python3 scripts/get_tempest_weather.py --units metric

# JSON only (machine-friendly)
python3 scripts/get_tempest_weather.py --json

### Output behavior

Emit concise JSON (always)
Include a short human summary unless --json is used
Include timestamp and source URL for traceability
For --stats, return the matched historical row from stats_day, stats_month, or stats_year

### If data fetch fails

Check token validity and station/device ID
Retry once for transient network errors
Return a short actionable error message

### Field mapping reference

For Tempest observation index mapping and response notes, read:

references/tempest-api.md

### License

LICENSE (MIT)

### Source

https://github.com/wranglerdriver/tempest-weather
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: wranglerdriver
- Version: 1.1.0
## 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-09T21:03:38.325Z
- Expires at: 2026-05-16T21:03:38.325Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/tempest-weather)
- [Send to Agent page](https://openagent3.xyz/skills/tempest-weather/agent)
- [JSON manifest](https://openagent3.xyz/skills/tempest-weather/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/tempest-weather/agent.md)
- [Download page](https://openagent3.xyz/downloads/tempest-weather)