---
name: Live Weather Briefing
slug: live-weather-briefing
category: Automation
description: Live Weather Briefing creates a current, source-linked weather summary for one city using Open-Meteo geocoding and forecast APIs. Use it for live conditions by city when you need the resolved location, observation time, and source links.
github: "https://github.com/FrancyJGLisboa/agent-skills-platform/tree/main/.agents/skills/live-weather-briefing-skill"
language: Python
stars: 2372
forks: 260
install: "npx degit https://github.com/FrancyJGLisboa/agent-skills-platform/tree/main/.agents/skills/live-weather-briefing-skill ~/.claude/skills/live-weather-briefing-skill"
installs_to: ~/.claude/skills/live-weather-briefing-skill
source_path: .agents/skills/live-weather-briefing-skill/SKILL.md
collection_size: 7
category_size: 1754
collection_url: "https://dirskills.com/collections/FrancyJGLisboa/agent-skills-platform"
added: 2026-09-03T06:03:13.176Z
last_synced: 2026-09-03T06:03:13.176Z
canonical_url: "https://dirskills.com/skills/live-weather-briefing"
---

# Live Weather Briefing

Live Weather Briefing creates a current, source-linked weather summary for one city using Open-Meteo geocoding and forecast APIs. Use it for live conditions by city when you need the resolved location, observation time, and source links.

**Install:**

```bash
npx degit https://github.com/FrancyJGLisboa/agent-skills-platform/tree/main/.agents/skills/live-weather-briefing-skill ~/.claude/skills/live-weather-briefing-skill
```

## README

# /live-weather-briefing-skill

Create a current weather briefing for one city. Resolve the city through
Open-Meteo's geocoding API, then retrieve current conditions from its forecast API.
Always show the resolved location, observation time, and source URLs.

## Run

```bash
python3 scripts/run_pipeline.py --city "Sao Paulo, BR" --output briefing.md
```

The command makes two live, read-only API requests and writes a Markdown briefing.
It never books travel, sends alerts, or changes external data.

## Required behavior

1. Use the first exact geocoding result and show its country and coordinates.
2. Retrieve current temperature, apparent temperature, wind speed, weather code, and observation time.
3. State that weather is advisory and include the source URLs.
4. If a city cannot be resolved or an API response is incomplete, stop with an error; do not invent conditions.

## Gotchas

- Current conditions are model data, not a safety alert. Check local official warnings before decisions involving risk.
- A city name can be ambiguous. Include a country or region in the request when the city is not unique.
- Conditions change after retrieval; the briefing's observation time identifies the freshness of this result.

## References

- https://open-meteo.com/en/docs/geocoding-api
- https://open-meteo.com/en/docs
