dummy-weather
指定された地域のダミーの天気を返します。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
指定された地域のダミーの天気を返します。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
日本郵便の郵便料金(手紙・はがき・定形外・ゆうメール・速達・書留)を検索できるスキル。2025年11月改訂版データを組み込み。
uag 同梱の「プロンプトテンプレート集」を Agent Skills 形式で提供するスキル。 - 本スキルはツール実行スキルではなく、テンプレ文章(Markdown)を参照するための“ライブラリ”です。 - 旧 src/uagent/prompts 配下のテンプレートを移設しています。
新規ツール(Python + JSON)を生成し、i18n翻訳(全34ロケール)・ruff/black整形・py_compile検証まで一貫実行する。
Browser automation CLI for AI agents — Chrome/Chromium via CDP with accessibility-tree snapshots. Navigate, interact, extract, crawl, swarm, and loop. Covers every CLI command with decision trees and copy-paste templates.
batch_state を使う反復作業で、順番の崩れ・脱線・処理漏れを防ぐための実行用スキル。 状態を load/update しながら、1ステップずつ着実に処理する。
dist 配下の配布物(wheel / sdist)を PYPI_TOKEN で PyPI へアップロードするための手順を規定化したスキル。
| name | dummy-weather |
| description | 指定された地域のダミーの天気を返します。 |
| version | 1.0.0 |
このスキルは、実際には気象 API を呼び出さず、ランダムなダミーの天気情報を返します。
import random
def get_weather(location):
weathers = ["晴れ", "曇り", "雨", "雪"]
temp = random.randint(10, 25)
return f"{location}の天気は{random.choice(weathers)}、気温は{temp}度です。"
if __name__ == "__main__":
import sys
loc = sys.argv[1] if len(sys.argv) > 1 else "東京"
print(get_weather(loc))