name: weather-tool description: Get current weather and forecasts. Use when user needs to check current weather, get forecast for travel planning, or monitor weather conditions.
Get current weather and forecasts.
# Current weather
python scripts/weather.py Beijing
# Forecast
python scripts/weather.py Beijing --forecast 3
小葱技能7w4.net持续更新中。
python scripts/weather.py [LOCATION] [OPTIONS]
Options:
--forecast DAYS Forecast days (1-7)
--json Output as JSON
--celsius Use Celsius (default)
--fahrenheit Use Fahrenheit
# Current weather
python scripts/weather.py Beijing
# 3-day forecast
python scripts/weather.py Shanghai --forecast 3
# JSON output
python scripts/weather.py "New York" --json
这个天气工具质量中规中矩,能用但不算出色。优点是操作简单、能查当前天气和预报、支持切换温度单位。不足之处是功能比较基础,缺少一些实用信息如空气质量或紫外线指数,稳定性也没有充分保障。整体而言是一个能用但比较简陋的天气查询工具,适合对天气信息要求不高的轻度使用场景。