AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Weather

skill-kubiyabot-skill-weather-skill · by kubiyabot

Get weather information for any city. Demonstrates API integration patterns.

No reviews yet
0 installs
33 views
0.0% view→install

Install

$ agentstack add skill-kubiyabot-skill-weather-skill

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-kubiyabot-skill-weather-skill)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
7mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Weather? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Weather Skill

This skill demonstrates how to build an API integration skill using the SKILL.md format.

Overview

The weather skill fetches weather data from a public API and formats it for display. It shows patterns for:

  • API integration with curl
  • JSON parsing with jq
  • Error handling
  • Optional parameters with defaults

When to Use

Use this skill when you need to:

  • Check current weather for a location
  • Get weather forecasts
  • Integrate weather data into workflows

Tools

current

Get current weather for a city.

This tool fetches real-time weather data including temperature, conditions, and humidity.

Parameters:

  • city (required, string): City name (e.g., "London", "New York", "Tokyo")
  • units (optional, string): Temperature units - "metric" for Celsius, "imperial" for Fahrenheit (default: metric)

Example:

# Basic usage
skill run weather:current city="London"

# With units
skill run weather:current city="Paris" units="metric"
skill run weather:current city="New York" units="imperial"

forecast

Get weather forecast for upcoming days.

Returns a multi-day weather forecast for the specified location.

Parameters:

  • city (required, string): City name
  • days (optional, integer): Number of days to forecast (1-5, default: 3)

Example:

# 3-day forecast (default)
skill run weather:forecast city="Berlin"

# 5-day forecast
skill run weather:forecast city="Tokyo" days=5

Implementation Notes

This skill uses:

  • curl: For HTTP requests to weather API
  • jq: For JSON parsing and formatting
  • Environment variable: WEATHER_API_KEY for authentication

The API used is OpenWeatherMap (https://openweathermap.org/api). You'll need to configure your API key before using this skill.

Configuration

Set your OpenWeatherMap API key:

export WEATHER_API_KEY="your-api-key-here"

Or use skill config:

skill config weather

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.