現在の天気や予報をAPIキーなしで取得できるSkillで、今日の服装や傘の必要性を判断したり、旅行の計画を立てたりするのに役立ちます。
現在の天気や天気予報を調べることができるSkillです。
📜 元の英語説明(参考)
Get current weather and forecasts (no API key required).
🇯🇵 日本人クリエイター向け解説
現在の天気や天気予報を調べることができるSkillです。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o weather.zip https://jpskill.com/download/5564.zip && unzip -o weather.zip && rm weather.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/5564.zip -OutFile "$d\weather.zip"; Expand-Archive "$d\weather.zip" -DestinationPath $d -Force; ri "$d\weather.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
weather.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
weatherフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-17
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
[Skill 名] weather
天気
API キー不要の無料サービスを2つご紹介します。
wttr.in (プライマリ)
簡単なワンライナーです。
curl -s "wttr.in/London?format=3"
# Output: London: ⛅️ +8°C
コンパクトなフォーマットです。
curl -s "wttr.in/London?format=%l:+%c+%t+%h+%w"
# Output: London: ⛅️ +8°C 71% ↙5km/h
完全な予報です。
curl -s "wttr.in/London?T"
フォーマットコード: %c 天候 · %t 気温 · %h 湿度 · %w 風 · %l 場所 · %m 月
ヒント:
- スペースはURLエンコードしてください:
wttr.in/New+York - 空港コードも利用できます:
wttr.in/JFK - 単位:
?m(メートル法)?u(米国慣用単位) - 今日のみ:
?1· 現在のみ:?0 - PNG:
curl -s "wttr.in/Berlin.png" -o /tmp/weather.png
Open-Meteo (フォールバック、JSON)
無料でキー不要、プログラムでの利用に適しています。
curl -s "https://api.open-meteo.com/v1/forecast?latitude=51.5&longitude=-0.12¤t_weather=true"
都市の座標を見つけてからクエリを実行してください。気温、風速、天気コードを含むJSONを返します。
ドキュメント: https://open-meteo.com/en/docs
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Weather
Two free services, no API keys needed.
wttr.in (primary)
Quick one-liner:
curl -s "wttr.in/London?format=3"
# Output: London: ⛅️ +8°C
Compact format:
curl -s "wttr.in/London?format=%l:+%c+%t+%h+%w"
# Output: London: ⛅️ +8°C 71% ↙5km/h
Full forecast:
curl -s "wttr.in/London?T"
Format codes: %c condition · %t temp · %h humidity · %w wind · %l location · %m moon
Tips:
- URL-encode spaces:
wttr.in/New+York - Airport codes:
wttr.in/JFK - Units:
?m(metric)?u(USCS) - Today only:
?1· Current only:?0 - PNG:
curl -s "wttr.in/Berlin.png" -o /tmp/weather.png
Open-Meteo (fallback, JSON)
Free, no key, good for programmatic use:
curl -s "https://api.open-meteo.com/v1/forecast?latitude=51.5&longitude=-0.12¤t_weather=true"
Find coordinates for a city, then query. Returns JSON with temp, windspeed, weathercode.