一键导入
weather
Get current weather and forecasts for any location. Use when the user asks about weather, temperature, rain, or forecasts. No API key needed.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Get current weather and forecasts for any location. Use when the user asks about weather, temperature, rain, or forecasts. No API key needed.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Show a sleep report — last night, 7-day average, 30-day average, plus trend direction. Use when the user asks how they slept, wants a sleep summary, or hits /sleep.
Show what's on today — calendar events, action-required emails, plus a one-line pulse on any active topics being tracked. Use when the user asks "what's on today" or hits /today.
Show what's coming tomorrow — calendar events, prep needed, anything time-sensitive. Use when the user asks "what's tomorrow" or hits /tomorrow.
Show Claude subscription usage — current 5-hour session % and 7-day weekly % used, plus reset times. Mirrors the "Usage" view in the Claude.ai mobile app. Use when the user asks about their Claude usage, quota, limits, or how much of their session they've burned.
Read Withings scale and health data — weight, body fat, muscle mass, BMI, hydration, bone mass, heart rate. Use when the user asks about their weight, body composition, scale data, or anything Withings-related.
Read and send iMessages via the user's BlueBubbles Server running on their Mac. Use when the user asks about iMessages — reading a conversation, searching for a person, sending a message, reacting, etc. The Mac must be awake and BlueBubbles Server running.
基于 SOC 职业分类
| name | weather |
| description | Get current weather and forecasts for any location. Use when the user asks about weather, temperature, rain, or forecasts. No API key needed. |
No setup needed. Uses wttr.in.
Don't mention the skill by name. Just check the weather and tell them naturally. "It's 18°C and cloudy in SF, might rain later."
# Current weather one-liner
curl -s "wttr.in/San+Francisco?format=3"
# Detailed with feels-like, wind, humidity
curl -s "wttr.in/San+Francisco?format=%l:+%c+%t+(feels+like+%f),+%w+wind,+%h+humidity"
# Will it rain?
curl -s "wttr.in/San+Francisco?format=%c+%p"
# 3-day forecast
curl -s "wttr.in/San+Francisco"
# JSON output for parsing
curl -s "wttr.in/San+Francisco?format=j1"
Replace San+Francisco with the user's city. Use + for spaces.