# Send Google 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "google-weather",
    "name": "Google Weather",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Shaharsha/google-weather",
    "canonicalUrl": "https://clawhub.ai/Shaharsha/google-weather",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/google-weather",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-weather",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "lib/weather_helper.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "google-weather",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T23:10:26.190Z",
      "expiresAt": "2026-05-10T23:10:26.190Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-weather",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-weather",
        "contentDisposition": "attachment; filename=\"google-weather-1.3.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "google-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/google-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/google-weather",
    "downloadUrl": "https://openagent3.xyz/downloads/google-weather",
    "agentUrl": "https://openagent3.xyz/skills/google-weather/agent",
    "manifestUrl": "https://openagent3.xyz/skills/google-weather/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/google-weather/agent.md"
  }
}
```
## Documentation

### Google Weather - Real-time Weather Data

Get accurate weather conditions using Google's Weather API. Requires a Google Cloud API key with Weather API enabled.

### Quick Usage

# Current weather (formatted output)
python3 skills/google-weather/lib/weather_helper.py current "New York"
python3 skills/google-weather/lib/weather_helper.py current "London"
python3 skills/google-weather/lib/weather_helper.py current "Sydney"

# 24h Forecast
python3 skills/google-weather/lib/weather_helper.py forecast "Tel Aviv"

# Raw JSON data
python3 skills/google-weather/lib/weather_helper.py json "Paris"

### Example Output

*New York*
Partly Cloudy ⛅
🌡️ 12°C (feels like 10°C)
💨 Wind: 18 km/h NORTHWEST
💧 Humidity: 55%

*24h Forecast for Tel Aviv*
18:00: 17.8°C, ☀️ 5 km/h NORTH
22:00: 14.3°C, ☀️ 6 km/h EAST_NORTHEAST
02:00: 12.8°C, ⛅ 8 km/h NORTHEAST
06:00: 10.8°C, ☀️ 6 km/h EAST_NORTHEAST
10:00: 16.1°C, ☀️ 5 km/h SOUTH
14:00: 20.4°C, 🌤️ 8 km/h WEST_NORTHWEST

### Supported Locations

Any location worldwide - just type the city name:

New York, London, Paris, Berlin, Sydney
San Francisco, Berlin, Singapore, Dubai
Or any address, landmark, or coordinates

The skill automatically geocodes locations using Google Maps API.

### Data Available

Temperature: Current + feels like
Conditions: Clear, cloudy, rain, snow, etc. with emoji icons
Forecast: Hourly data for temperature, wind, and conditions
Humidity: Percentage
Wind: Speed, direction, gusts
UV Index: Sun exposure level
Precipitation: Probability and type
Cloud Cover: Percentage
Visibility: Distance

### Setup

Create a project in Google Cloud Console
Enable the Weather API
Enable the Geocoding API (for location name lookup)
Create an API key and set it as GOOGLE_API_KEY environment variable

Also supports GOOGLE_WEATHER_API_KEY or GOOGLE_MAPS_API_KEY if you already have one configured.

### Multi-language Support

Output adapts to location - supports English, Hebrew, and other languages based on the language parameter.

# Hebrew output
python3 skills/google-weather/lib/weather_helper.py current "Tel Aviv"
# Output: בהיר ☀️ 19°C...
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Shaharsha
- Version: 1.2.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-03T23:10:26.190Z
- Expires at: 2026-05-10T23:10:26.190Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/google-weather)
- [Send to Agent page](https://openagent3.xyz/skills/google-weather/agent)
- [JSON manifest](https://openagent3.xyz/skills/google-weather/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/google-weather/agent.md)
- [Download page](https://openagent3.xyz/downloads/google-weather)