# Send BirdWeather 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": "birdweather",
    "name": "BirdWeather",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/maxdraki/birdweather",
    "canonicalUrl": "https://clawhub.ai/maxdraki/birdweather",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/birdweather",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=birdweather",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/birdweather.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "birdweather",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T01:49:06.569Z",
      "expiresAt": "2026-05-06T01:49:06.569Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=birdweather",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=birdweather",
        "contentDisposition": "attachment; filename=\"birdweather-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "birdweather"
      },
      "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/birdweather"
    },
    "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/birdweather",
    "downloadUrl": "https://openagent3.xyz/downloads/birdweather",
    "agentUrl": "https://openagent3.xyz/skills/birdweather/agent",
    "manifestUrl": "https://openagent3.xyz/skills/birdweather/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/birdweather/agent.md"
  }
}
```
## Documentation

### BirdWeather

CLI at scripts/birdweather.py for querying BirdWeather station data. No API key needed — all station data is public.

Find station IDs at https://app.birdweather.com/

### Commands

# Station info (name, location, status, last detection)
scripts/birdweather.py station <station_id>

# Species detected (default: today)
scripts/birdweather.py species <station_id> --period day|week|month --limit 50

# Species for date range
scripts/birdweather.py species <station_id> --from 2026-02-01 --to 2026-02-14

# Top species (compact, default: week)
scripts/birdweather.py top <station_id> --period week --limit 10

# Recent individual detections
scripts/birdweather.py detections <station_id> --limit 20

# Compare periods (shows new arrivals, departures, trends)
scripts/birdweather.py compare <station_id> --this week --last month

# Any command with raw JSON output
scripts/birdweather.py --json species <station_id> --period week

### Output

Species lists show detection count, common name, and scientific name:

467  Eurasian Blue Tit (Cyanistes caeruleus)
    290  Eurasian Wren (Troglodytes troglodytes)

Compare shows arrivals, departures, and significant changes between periods.

### Notes

Detection count ≠ bird count (one bird singing repeatedly = many detections)
BirdNET AI classification can misidentify — unusual species may be false positives
Stations go offline periodically — empty results may mean the station is down, not that there are no birds
Period options: day (today), week (last 7 days), month (last 30 days)
Stdlib only — no pip dependencies
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: maxdraki
- Version: 1.0.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-04-29T01:49:06.569Z
- Expires at: 2026-05-06T01:49:06.569Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/birdweather)
- [Send to Agent page](https://openagent3.xyz/skills/birdweather/agent)
- [JSON manifest](https://openagent3.xyz/skills/birdweather/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/birdweather/agent.md)
- [Download page](https://openagent3.xyz/downloads/birdweather)