# Weather

> Look up current weather and short forecast for a location via Open-Meteo (no API key required).

- Skill: `xaiht/weather` (Agent Skill)
- Install (CLI): `npx skillmds@latest add xaiht/weather`
- Raw SKILL.md: https://api.skillmd.com/api/skills/xaiht/weather/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: XAIHT (https://skillmd.com/u/xaiht)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/xaiht/weather

---

<!--
═══════════════════════════════════════════════════════════════════
  ✦  T L A M A T I N I  ✦   —   "one who knows"
  Created by  Angela López Mendoza   ·   @angelahack1
  Developer · Architect · Creator of Tlamatini
  Tlamatini Author Banner — do not remove (Angela's name is kept in every build)
═══════════════════════════════════════════════════════════════════
-->

# Weather skill

Base URL: `https://api.open-meteo.com/v1/forecast`.

Compose:
```
?latitude=${input.latitude}&longitude=${input.longitude}
&current=temperature_2m,weather_code,wind_speed_10m
&hourly=temperature_2m,precipitation
```

Issue with `chat_agent_apirer`. Return the parsed JSON's `current` and
`hourly` blocks. Open-Meteo is free for non-commercial use and does not
require an API key.

