ワンクリックで
weather
When a user asks for weather or short forecast at a latitude/longitude → return current conditions or forecast.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
When a user asks for weather or short forecast at a latitude/longitude → return current conditions or forecast.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Stocks (multi-market index snapshot + daily summary via stock/summary, incl. TASI), funds (six-digit OHLCV vs NAV daily), precious metals (XAUUSD) — pick the matching REST path or MCP tool.
When a user asks for China Fuel Price by province or a recharge promo → return current/previous prices or promo result.
When a user asks for FX rates or currency conversion → return exchange rates or the converted amount.
When a user asks for the latest cached movie list → return merged movie catalog.
When a user provides China latitude/longitude → reverse geocode to province/city/district.
When a user asks whether today is a public holiday in mainland China → return holiday status/name.
| name | weather |
| description | When a user asks for weather or short forecast at a latitude/longitude → return current conditions or forecast. |
23.031389,113.137222 (Nanhai center example), lat:… lng:…, etc.latitude (-90..90) and longitude (-180..180).granularity (hourly | daily, default hourly), hours (e.g. 1–24 for hourly). If user omits forecast horizon, use a small default (e.g. 6) or ask once.latitude, longitude (numbers, required) in JSON body.granularity (optional), hours (optional), days (optional / reserved).data.POST /api/weather (now) or POST /api/weather/forecast (forecast) with JSON body.location, now or forecast from JSON.Now:
POST /api/weather — body { "latitude": number, "longitude": number }
Forecast:
POST /api/weather/forecast — body e.g. { "latitude": 23.031389, "longitude": 113.137222, "granularity": "hourly", "hours": 6 } (illustrative point near Nanhai, Foshan; coordinates from public references)
location (province/city/district etc.), now or forecast structure as returned.conditionText and place strings from API as returned when showing raw labels./api/weather with that body → summarize now./api/weather/forecast with hours: 6.POST only for these routes; follow Steps.