一键导入
weather-forecast
Get the current weather and multi-day forecast for any city or location in the world with robust wttr.in parsing and search fallbacks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Get the current weather and multi-day forecast for any city or location in the world with robust wttr.in parsing and search fallbacks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Generate high-end, modern websites, landing pages, and single-page applications (SPAs). This skill adapts dynamically to the root design system (DESIGN.md), defaults to Vanilla CSS with modern custom variables, and supports both single-file and multi-file architectures with premium animations. Trigger whenever a user or agent asks to design, build, or initialize a frontend interface.
Provides design system context and brand-specific design specifications (colors, typography, components, and layout systems) by generating a root DESIGN.md file based on the requested brand (such as Airbnb, BMW M, Claude, Dell 1996, HP, or Nintendo 2001) whenever a user or agent requests a design system or brand theme.
A suite of skills for comprehensive market analysis, including audience segmentation, competitor intelligence, market trend analysis, and opportunity identification.
Retrieve and report real-time system performance data including CPU usage, memory availability, and disk status. Use this skill whenever the user asks about system health, machine performance, or resource usage — even if they say "how are you running?", "is the server okay?", "what's the CPU at?", "check memory", "am I running out of disk space", or use the "/status" command.
Master orchestrator skill for novel writing. Guides the agent and author through speculative world-building, multi-dimensional character creation, structural plot architecture, draft acceleration ("zero-drafting"), and copyediting.
API for accessing normalized book and transaction data from the database. Use when you need to fetch lists of books, detailed sales transactions, or summary reports. Triggered by requests for book inventory, sales data, or performance summaries.
| name | weather-forecast |
| description | Get the current weather and multi-day forecast for any city or location in the world with robust wttr.in parsing and search fallbacks. |
This skill enables Nami to retrieve and present real-time weather conditions and forecasts for any city or region globally, using wttr.in with built-in fallbacks.
When asked about the weather in a specific location, attempt to fetch raw JSON data from wttr.in using the web_fetch tool.
https://wttr.in/<city_name_or_location>?format=j1https://wttr.in/Bangkok?format=j1[!TIP] If the city name contains spaces, replace them with
+or use URL encoding (e.g.,New+YorkorSan+Francisco).
From the returned JSON, extract the following details:
nearest_area[0].areaName[0].value (to confirm the resolved city/region name) and nearest_area[0].country[0].value.current_condition[0]):
temp_C: Current temperature in Celsius.temp_F: Current temperature in Fahrenheit.FeelsLikeC: "Feels Like" temperature in Celsius.FeelsLikeF: "Feels Like" temperature in Fahrenheit.humidity: Humidity percentage.windspeedKmph: Wind speed in km/h.weatherDesc[0].value: Brief weather description.weather array):
date, maxtempC/mintempC, and general weather conditions.Use the weather description or weatherCode to map appropriate emojis:
Sunny, Clear ☀️Partly cloudy ⛅Cloudy, Overcast ☁️Mist, Fog, Freezing fog 🌫️Patchy rain nearby, Light drizzle, Light rain 🌦️Heavy rain, Torrential rain, Thundery outbreaks nearby 🌧️⛈️Patchy snow nearby, Light snow, Heavy snow ❄️Windy, Blowing snow 💨wttr.in can occasionally be rate-limited or offline. Implement this robust fallback strategy:
web_fetch returns non-JSON text or fails with a rate limit error (e.g., 429 Too Many Requests), fall back immediately to a web search using search_web or Google Search for "current weather in <city_name>".wttr.in, omit only those specific details instead of failing the entire request.Construct an aesthetic, readable, and structured markdown response.
### 🌤️ Current Weather in **Bangkok, Thailand**
* **Temperature:** 32°C (90°F) | *Feels like 36°C (97°F)*
* **Condition:** Partly cloudy ⛅
* **Humidity:** 74%
* **Wind Speed:** 12 km/h
* *Note: Weather times are local to the requested city.*
### 📅 3-Day Forecast for **New York, USA**
* **Today:** ⛅ Partly cloudy | Max 22°C (72°F) / Min 15°C (59°F)
* **Tomorrow:** 🌧️ Light rain | Max 18°C (64°F) / Min 12°C (54°F)
* **Day After:** ☀️ Sunny | Max 24°C (75°F) / Min 16°C (61°F)