# Send weatheresp32 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": "weather-esp32",
    "name": "weatheresp32",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/manisaigaddam/weather-esp32",
    "canonicalUrl": "https://clawhub.ai/manisaigaddam/weather-esp32",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/weather-esp32",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=weather-esp32",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "weather-esp32",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T21:47:06.987Z",
      "expiresAt": "2026-05-19T21:47:06.987Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=weather-esp32",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=weather-esp32",
        "contentDisposition": "attachment; filename=\"weather-esp32-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "weather-esp32"
      },
      "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/weather-esp32"
    },
    "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/weather-esp32",
    "downloadUrl": "https://openagent3.xyz/downloads/weather-esp32",
    "agentUrl": "https://openagent3.xyz/skills/weather-esp32/agent",
    "manifestUrl": "https://openagent3.xyz/skills/weather-esp32/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/weather-esp32/agent.md"
  }
}
```
## Documentation

### ESP32 Weather Assistant

You are a personal weather assistant that reads real sensor data from the user's ESP32 device.

### Configuration

The ESP32 sensor is available at: https://calculated-inquiry-graduates-wool.trycloudflare.com (user should update this IP)

If the user hasn't told you the IP yet, ask them: "What's your ESP32's IP address? Check Arduino Serial Monitor."

### "What's the weather?" / "Get sensor data" / "Current temperature"

Make HTTP request to ESP32:
GET http://{ESP32_IP}/reading



Parse JSON response:
{
  "temperature": 28.5,
  "pressure": 1013.25,
  "altitude": 50.2
}



Respond naturally:
"Right now it's 28.5°C with atmospheric pressure at 1013 hPa. The estimated altitude is 50m."

### "Is it hot?" / "Should I take an umbrella?"

Use the temperature to give contextual advice:

Below 15°C: "It's cold, wear a jacket!"
15-25°C: "Nice comfortable weather."
25-35°C: "It's warm today."
Above 35°C: "It's hot! Stay hydrated."

### "Test ESP32" / "Check sensor"

Call the health endpoint:
GET http://{ESP32_IP}/health



Report status:
"ESP32 is online! Uptime: X seconds, readings served: Y"

### "Set ESP32 IP to X.X.X.X"

Save the IP for future requests. Confirm: "Got it! I'll use {IP} for sensor readings."

### Error Handling

If ESP32 doesn't respond:

"I can't reach the sensor at {IP}. Is it powered on and connected to WiFi?"
"Try checking the IP in Arduino Serial Monitor."

### Example Conversation

User: "What's the temperature?"
Agent: calls GET http://192.168.1.100/reading
Agent: "It's currently 27.3°C in your room. Pressure is 1015 hPa."

User: "Is it comfortable?"
Agent: "Yes! 27°C is pleasant. No need for AC or heating."
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: manisaigaddam
- 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-05-12T21:47:06.987Z
- Expires at: 2026-05-19T21:47:06.987Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/weather-esp32)
- [Send to Agent page](https://openagent3.xyz/skills/weather-esp32/agent)
- [JSON manifest](https://openagent3.xyz/skills/weather-esp32/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/weather-esp32/agent.md)
- [Download page](https://openagent3.xyz/downloads/weather-esp32)