fetch-weather-report
SolidFetch the current weather forecast for a specified location and return a structured summary.
AI & Automation 52 stars
1 forks Updated today MIT
Install
Quality Score: 84/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Fetch Weather Report Skill
## Inputs
- `location` (required, string): The city and state/country to search weather for (e.g. "San Francisco, CA").
- `units` (optional, string): The unit system to use, either "metric" or "imperial". Default is "metric".
## Run
Run via the executable bash script:
```bash
./run.sh [path/to/inputs.json]
```
Python runtime contract:
- `run.sh` uses the first available interpreter in this order: skill `.venv/bin/python`, workflow `.venv/bin/python`, then required `$AI_MIME_PYTHON_PATH`.
- If `requirements.txt` exists, include these exact build/repair commands for the developer to set up the virtualenv before packaging or for manual troubleshooting:
```bash
"$AI_MIME_UV_PATH" venv .venv --python "$AI_MIME_PYTHON_PATH"
"$AI_MIME_UV_PATH" pip install -r requirements.txt --python .venv/bin/python
```
- State clearly that the install commands are for skill build or manual repair. The automated runtime does not create or repair `.venv` when executing the skill.
## Outputs
- `weather_summary` (dict):
- `location` (string): Resolved location name.
- `temperature` (float): Current temperature.
- `condition` (string): Weather condition description.
## Progress logs
The script outputs progress logs on `stderr` to track execution progress.
All logs must be written in clear, natural language suitable for an end-user overlay. Do not use structured JSON logs.
- "Fetching weather from API..."
- "It is sunny with 18.5 C"
- "Error: API t...
Details
- Author
- prakhar1114
- Repository
- prakhar1114/ai_mime
- Created
- 6 months ago
- Last Updated
- today
- Language
- Python
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
weather
Get current weather and forecasts via wttr.in or Open-Meteo. Use when: user asks about weather, temperature, or forecasts for any location. NOT for: historical weather data, severe weather alerts, or detailed meteorological analysis. No API key needed.
1 Updated yesterday
yourkenike AI & Automation Listed
weather-fetcher
Instructions for fetching current weather temperature data for Dubai, UAE from Open-Meteo API
3 Updated yesterday
Recepay6358 AI & Automation Solid
weather
Get current weather and forecasts (no API key required).
78 Updated today
MemTensor