fetch-weather-report

Solid

Fetch the current weather forecast for a specified location and return a structured summary.

AI & Automation 52 stars 1 forks Updated today MIT

Install

View on GitHub

Quality Score: 84/100

Stars 20%
57
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

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