openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Weather Tools

Automation skill for Weather Tools.

开发与 DevOps

作者:zhangzhifeng @164149043

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 39 · 1 current installs · 1 all-time installs

0

安装量(当前) 1

🛡 VirusTotal :良性 · OpenClaw :良性

Package:164149043/weather-tools

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill is an instruction-only wrapper that fetches weather from wttr.in via curl; its requirements and behavior are coherent and proportionate to the stated purpose.

目的

The name/description match the instructions: all examples call wttr.in to fetch weather. Minor metadata mismatch: registry metadata lists no required binaries, while SKILL.md metadata declares curl as required — but curl is reasonable and expected for this skill.

说明范围

SKILL.md only instructs the agent to run curl against wttr.in with various query parameters. It does not ask to read local files, access environment secrets, or post data to unexpected endpoints.

安装机制

No install spec and no code files — instruction-only. This minimizes on-disk risk; the skill relies on an existing curl binary.

证书

No environment variables, credentials, or config paths are requested. The skill does not ask for unrelated secrets.

持久

The skill is not always-enabled and uses normal autonomous invocation. It does not request persistent system-wide changes or modify other skills.

综合结论

This skill is coherent and lightweight: it simply instructs the agent to curl wttr.in for weather data. Before installing, confirm you are comfortable with outbound network requests to wttr.in (requests reveal requester IP and query parameters and may be logged). Ensure curl is available in the agent environment. Note minor metadata inconsistencies (declared required binary in SKILL.md vs registry listing, and differing fields in _meta.json) —…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Weather Tools」。简介:Automation skill for Weather Tools.。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/164149043/weather-tools/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: weather-tools
description: Get current weather and forecasts (no API key required).
homepage: https://wttr.in/:help
metadata: {"clawdbot":{"emoji":"🌤️","requires":{"bins":["curl"]}}}

# Weather

Get weather information using wttr.in (no API key required).

## Current weather

```bash
curl wttr.in
```

Location-specific:
```bash
curl wttr.in/Beijing
```

Compact output:
```bash
curl wttr.in/?format=3
```

## Forecasts

3-day forecast:
```bash
curl wttr.in/?1
```

Tomorrow:
```bash
curl wttr.in/?1T
```

Full forecast:
```bash
curl wttr.in/?2
```

## Output formats

Current temp only:
```bash
curl wttr.in/?format=%t
```

Wind direction and speed:
```bash
curl wttr.in/?format=%w
```

Full location name:
```bash
curl wttr.in/?format=%l
```

Custom format:
```bash
curl wttr.in/?format="%l: %c+%t+%w"
```

## Examples

Beijing current weather:
```bash
curl wttr.in/Beijing
```

Shanghai 3-day forecast:
```bash
curl wttr.in/Shanghai?1
```

Compact format (any location):
```bash
curl wttr.in/Tokyo?format=3
```

Moon phase:
```bash
curl wttr.in/?format=%m
```