Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions icons/weather-fra.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 58 additions & 0 deletions tools/utilities/weather-fra/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# weather-fra

Gets current weather conditions and forecast data for French cities using the Open-Meteo API.

## Voice Triggers

- "Hey Cal, What's the weather in Paris?"
- "Hey Cal, Paris forecast"

## Required Services



## Setup

No environment variables required.

No credentials required.

## Installation

### Via CAAL Tools Panel (Recommended)

1. Open CAAL web interface
2. Click Tools panel (wrench icon)
3. Search for "weather-fra"
4. Click Install and follow prompts

### Via Command Line

```bash
curl -s https://raw.githubusercontent.com/CoreWorxLab/caal-tools/main/scripts/install.sh | bash -s weather-fra
```

## Usage

Weather tool - forecast and current conditions for France.
Uses Open-Meteo API (free, no key required).

Parameters:
- action (required): 'forecast' or 'current'
- location (required): French city name (e.g., Paris, Lyon, Marseille, Toulouse, Bordeaux)
- days (optional, default 5): forecast days ahead (1-7)
- target_day (optional): specific weekday like 'Lundi', use for 'on Friday' style queries

Examples: 'Paris weather', 'Lyon forecast', 'Marseille right now' (action='current'), 'Toulouse on Wednesday' (target_day='Mercredi')

## Author

[@mmaudet](https://github.com/mmaudet)

## Category

utilities

## Tags

utilities
31 changes: 31 additions & 0 deletions tools/utilities/weather-fra/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"id": "2ATjQGqqA1vZdKL3czPuNA",
"name": "weather-fra",
"friendlyName": "Weather France",
"version": "1.0.0",
"description": "Gets current weather conditions and forecast data for French cities using the Open-Meteo API.",
"category": "utilities",
"toolSuite": true,
"actions": [
"forecast",
"current"
],
"icon": "weather-fra.svg",
"voice_triggers": [
"What's the weather in Paris?",
"Paris forecast"
],
"required_services": [],
"required_credentials": [],
"required_variables": [],
"author": {
"github": "mmaudet"
},
"tier": "community",
"tags": [
"utilities"
],
"dependencies": [],
"created": "2026-02-07",
"updated": "2026-02-07"
}
Loading