🎯

weather

🎯Skill

from steipete/clawdis

VibeIndex|
What it does

Retrieves current weather and forecasts for any location using free services, with multiple output formats and no API key required.

πŸ“¦

Part of

steipete/clawdis(48 items)

weather

Installation

npm installInstall npm package
npm install -g openclaw@latest
git cloneClone repository
git clone https://github.com/openclaw/openclaw.git
pnpmRun with pnpm
pnpm install
πŸ“– Extracted from docs: steipete/clawdis
22Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Get current weather and forecasts (no API key required).

Overview

# Weather

Two free services, no API keys needed.

wttr.in (primary)

Quick one-liner:

```bash

curl -s "wttr.in/London?format=3"

# Output: London: ⛅️ +8Β°C

```

Compact format:

```bash

curl -s "wttr.in/London?format=%l:+%c+%t+%h+%w"

# Output: London: ⛅️ +8Β°C 71% ↙5km/h

```

Full forecast:

```bash

curl -s "wttr.in/London?T"

```

Format codes: %c condition Β· %t temp Β· %h humidity Β· %w wind Β· %l location Β· %m moon

Tips:

  • URL-encode spaces: wttr.in/New+York
  • Airport codes: wttr.in/JFK
  • Units: ?m (metric) ?u (USCS)
  • Today only: ?1 Β· Current only: ?0
  • PNG: curl -s "wttr.in/Berlin.png" -o /tmp/weather.png

Open-Meteo (fallback, JSON)

Free, no key, good for programmatic use:

```bash

curl -s "https://api.open-meteo.com/v1/forecast?latitude=51.5&longitude=-0.12¤t_weather=true"

```

Find coordinates for a city, then query. Returns JSON with temp, windspeed, weathercode.

Docs: https://open-meteo.com/en/docs

More from this repository10

🎯
gog🎯Skill

Manages Gmail, Calendar, Drive, Contacts, Sheets, and Docs via CLI with OAuth-based Google Workspace interactions.

🎯
summarize🎯Skill

Quickly summarizes URLs, local files, and YouTube links using AI models with flexible extraction options.

🎯
coding-agent🎯Skill

Runs coding agents like Claude Code or Codex in bash with PTY support, enabling programmatic control and background processing.

🎯
mcporter🎯Skill

Streamlines interaction with MCP servers through CLI, enabling listing, configuration, authentication, and direct tool calls via HTTP or stdio.

🎯
apple-reminders🎯Skill

Manages Apple Reminders via CLI, enabling listing, adding, editing, completing, and deleting tasks with flexible date and list filtering.

🎯
gifgrep🎯Skill

Searches and downloads GIFs from Tenor/Giphy with a CLI/TUI, enabling preview, extraction, and easy sharing.

🎯
nano-pdf🎯Skill

Edits PDFs using natural language instructions, allowing precise page-level modifications with simple CLI commands.

🎯
obsidian🎯Skill

Automates interactions with Obsidian vaults, enabling searching, creating, moving, and managing Markdown notes via obsidian-cli.

🎯
peekaboo🎯Skill

Automates macOS UI interactions by capturing screens, targeting elements, driving input, and managing apps via a powerful CLI tool.

🎯
bird🎯Skill

Reads, searches, posts, and engages with X/Twitter via CLI using cookie authentication.