how-to-search-weather

Queries the weather_search tool using prefecture-prefixed Japanese municipality names.

Updated Feb 11, 2026
One-click install
npx skills add https://github.com/74th/test-llm-agent --skill how-to-search-weather-74th
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: how-to-search-weather
Source: https://github.com/74th/test-llm-agent/tree/main/20260211-langchain-deepagents/workspace/skills/how-to-search-weather
Command: npx skills add https://github.com/74th/test-llm-agent --skill how-to-search-weather-74th

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When looking up weather in Japan, the weather_search tool only accepts queries formatted as a prefecture name concatenated with a city or ward name (e.g., "東京都大田区"). Passing any other string format causes the lookup to fail, and this Skill ensures the query is always constructed correctly. ## Core Features & Use Cases - Correct Query Formatting: Enforces the rule that the query parameter must combine the prefecture and municipality, such as "東京都大田区". - Common Location Mapping: Provides a reference list for frequently asked locations, for example mapping "金沢市" to "石川県金沢市" before calling the tool. - Use Case: A user asks "金沢市の天気は?" and the Skill instructs the AI to call weather_search with "石川県金沢市" instead of the bare city name, returning the correct weather result. ## Quick Start Ask the AI to check the weather in Kanazawa and it will call weather_search with the query "石川県金沢市".

Frequently Asked Questions about how-to-search-weather

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search weather for a Japanese city with weather_search?▼

Call the weather_search tool with a query that concatenates the prefecture and municipality names, such as "東京都大田区". Passing any other string format is not allowed and will not return correct results.

What query format does the weather_search tool require?▼

The query must be the prefecture name directly followed by the city, ward, or town name, for example "埼玉県所沢市". No other text or formatting may be included in the query string.

How to look up weather in Kanazawa using weather_search?▼

Kanazawa must be passed as "石川県金沢市" because the tool requires the prefecture prefix. The Skill provides a mapping list for common locations like Kanazawa, Tokorozawa, and Chuo-ku.

Why does weather_search fail when I pass only a city name?▼

The tool rejects queries that lack the prefecture prefix, so a bare name like "金沢市" fails. Always prepend the prefecture, for example "石川県金沢市", before calling the tool.

What are the limitations of the weather_search query format?▼

The tool only supports Japanese locations expressed as prefecture plus municipality, and it cannot handle landmarks, coordinates, or non-Japanese place names. Locations outside the known mapping list require manually determining the correct prefecture.