Install
openclaw skills install awekas-currentFetches and normalizes current weather data from the AWEKAS API with caching, retries, and structured error handling.
openclaw skills install awekas-currentawekas-current
2.0.0
production
Fetches and normalizes current weather data from the AWEKAS API.
awekasCurrent.js
AWEKAS API key
Station ID
{
"source": "AWEKAS",
"cached": false,
"station": "string",
"data": {
"temperature": null,
"humidity": null,
"pressure": null,
"wind": {
"speed": null,
"direction": null
},
"rain": null,
"raw": {}
}
}
---
## Usage
```bash
openclaw awekas-current --key YOUR_KEY --station 12345
---
# 📦 `package.json`
```json id="pkgfinal"
{
"name": "openclaw-awekas-current",
"version": "2.0.0",
"type": "module",
"main": "awekasCurrent.js",
"engines": {
"node": ">=18"
},
"keywords": [
"openclaw",
"skill",
"weather",
"awekas"
],
"dependencies": {
"node-fetch": "^3.3.2"
}
}