📦 Weather Check — 技能工具
v1.0.0Current weather conditions and multi-day forecasts for any location worldwide.
0· 289·1 当前·1 累计
安全扫描
OpenClaw
安全
high confidenceThe skill's instructions, requirements, and behavior are coherent with a simple weather lookup service that issues HTTP POSTs to an external API; it does not request extra credentials or perform unexpected local actions.
评估建议
This skill simply posts location queries to https://weather.agentutil.net and returns the service's response. Before installing, consider whether you trust that domain and its privacy claims: queries (including coordinates) will be sent to that third party and may be logged. The SKILL.md mentions a paid crypto-based tier — confirm you understand how billing would be handled if you plan to exceed the free quota. If you need stronger privacy guarantees, prefer a weather API you control or one from...详细分析 ▾
✓ 用途与能力
Name/description (weather and forecasts) match the runtime instructions which call a remote weather API (https://weather.agentutil.net). There are no unrelated requirements (no binaries, env vars, or installs). Note: registry metadata listed no homepage but SKILL.md includes one — minor metadata inconsistency.
ℹ 指令范围
SKILL.md instructs the agent to POST location data (name or lat/lon) to the external service and to parse responses. This is expected for a weather skill, but it does mean user-provided locations are transmitted to a third-party endpoint; the agent may also perform outbound network calls whenever the skill is used.
✓ 安装机制
No install spec and no code files — instruction-only. Nothing is written to disk or installed by the skill itself.
✓ 凭证需求
No environment variables, credentials, or config paths are requested. The SKILL.md mentions a paid tier (crypto payment) but does not require any payment credentials from the agent, which is unusual but not inconsistent.
✓ 持久化与权限
always: false and default agent invocation rules apply. The skill does not request permanent presence or privileges over other skills or system config.
安全有层次,运行前请审查代码。
运行时依赖
无特殊依赖
版本
latestv1.0.02026/3/4
- Initial release of weather-check skill. - Provides current weather conditions and multi-day forecasts for any global location. - Supports location queries by name or coordinates. - Free tier: 10 queries/day, no authentication needed. - Paid tier available with low per-query cost. - Privacy focused: No personal data collected; rate limiting via IP hash only.
● 无害
安装命令
点击复制官方npx clawhub@latest install weather-check
镜像加速npx clawhub@latest install weather-check --registry https://cn.longxiaskill.com
技能文档
Get current weather conditions and multi-day forecasts for any location by name or coordinates.
Endpoints
Current Weather
curl -X POST https://weather.agentutil.net/v1/current \
-H "Content-Type: application/json" \
-d '{"location": "London"}'
Or by coordinates: {"lat": 51.51, "lon": -0.13}
Forecast
curl -X POST https://weather.agentutil.net/v1/forecast \
-H "Content-Type: application/json" \
-d '{"location": "Tokyo", "days": 7}'
Days: 1-16 (default 7).
Response Format
{
"location": {"name": "London", "country": "GB", "latitude": 51.51, "longitude": -0.13},
"current": {
"temperature": {"celsius": 12.5, "fahrenheit": 54.5},
"humidity": 72,
"conditions": "Overcast",
"wind": {"speed_kmh": 15.2, "direction_degrees": 230}
},
"request_id": "abc-123",
"service": "https://weather.agentutil.net"
}
Pricing
- Free tier: 10 queries/day, no authentication required
- Paid tier: $0.001/query via x402 protocol (USDC on Base)
Privacy
No authentication required for free tier. No personal data collected. Rate limiting uses IP hashing only.