AgentSkillsCN

weather

借助`wttr.in`快速获取当前天气及短期预报(无需API密钥)。当用户按城市或地区查询天气时,可使用此工具。

SKILL.md
--- frontmatter
name: weather
description: Get current weather and short forecasts quickly using `wttr.in` (no API key required). Use when users ask for weather by city/region.
license: Proprietary. LICENSE.txt has complete terms

Weather

Use this skill for quick weather lookups without API keys.

Current weather

bash
curl -s "wttr.in/San+Francisco?format=3"

Compact format

bash
curl -s "wttr.in/San+Francisco?format=%l:+%c+%t+%h+%w"

Multi-day forecast

bash
curl -s "wttr.in/San+Francisco?m"

Usage guidance

  • URL-encode spaces with +.
  • Use ?m for metric and ?u for US units.
  • For ambiguous place names, clarify state/country first.