ワンクリックで
weather
Get current weather and forecasts (no API key required). Use the `run_terminal_command` tool for execution.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Get current weather and forecasts (no API key required). Use the `run_terminal_command` tool for execution.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Two-layer memory system with grep-based recall.
Executes tools for AI agents, ensuring correct parameter formats and preventing common execution errors.
Use this skill to get documentation for third-party APIs, SDKs or libraries before writing code that uses them to ensure you have the latest, most accurate documentation. This is a better way to find documentation than doing web search. This includes when a user asks for tasks like "use the OpenAI API", "call the Stripe API", "use the Anthropic SDK", "query Pinecone", or any other time the user asks you to write code against an external service and you need current API reference. Fetch the docs with chub before answering, rather than relying on your pre-trained knowledge, which may be outdated because of recent changes to these APIs. Be sure to use this skill when the user asks for the latest docs, latest API behavior, or explicitly mentions chub or Context Hub. Ensure `chub` is available, run `chub --help`, then follow the instructions there.
Summarize public content — articles/text, YouTube videos, or podcasts — by fetching text or transcripts.
Monitor environment health by checking URLs with 'curl -o /dev/null --max-time 5 -s -w "%{http_code}\n"' and analyzing failures with LLM.
| name | weather |
| description | Get current weather and forecasts (no API key required). Use the `run_terminal_command` tool for execution. |
This tool provides two methods for retrieving weather information: wttr.in (quick shell commands) and Open-Meteo (JSON API access). Always use the appropriate format codes listed below. Ensure you use standard shell commands like curl -s when invoking these scripts.
Use this for fast, interactive weather checks. These commands are designed to run directly in a shell environment. Always respond using Celsius (°C) and wind speed in km/h. Be aware of the correct command structure to avoid errors.
curl -s "wttr.in/London?format=3"
# Example Output: London: ⛅️ +8°C
# Tip: Use ?0 for current weather only. Use ?1 for compact format.
curl -s "wttr.in/New+York?format=1"
Use these codes to specify the output fields you want. Ensure you use ? followed by the code, e.g., %l, %t, %h, %w.
%l: Location name%c: Condition icon%t: Temperature%h: Humidity percentage%w: Wind speed%m: Moon phaseFull Forecast: Use ?T to see a detailed forecast for several days consecutively.
curl -s "wttr.in/London?T"
# Output details will vary based on format requested.
wttr.in/New+York).?m. Request Imperial units using ?u. Example: curl -s "wttr.in/London?m".?1 for today only, ?0 for current weather, ?3 for the next 3 days.wttr.in service is operational and accessible from your environment.cd, head, tail, date).Use this method when programmatic access to structured data is required. This tool retrieves raw JSON which must be parsed by the agent. Requires valid Latitude and Longitude coordinates.
The primary use case is querying for current weather based on known coordinates. The structure below shows a typical request format:
curl -s "https://api.open-meteo.com/v1/forecast?latitude={LAT}&longitude={LON}¤t_weather=true"
# Example (Latitude for London approx 51.5, Longitude approx -0.12):
curl -s "https://api.open-meteo.com/v1/forecast?latitude=51.5&longitude=-0.12¤t_weather=true"
¤t_weather=true if seeking immediate status information. For forecasts, adjust parameters as necessary based on the live API documentation.Common Errors to Avoid:
curl ...).weather is the correct skill name being referenced.Ponte da Barca).By adhering to these guidelines and restrictions, you can effectively retrieve and interpret weather information using the weather tool. Always verify the accessibility of the external services and maintain a clear structure in your commands.