with one click
weather
Get current weather and forecasts (no API key required).
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Get current weather and forecasts (no API key required).
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Control ROS1/ROS2 robots via natural language with real-time feedback. Use when users want to control robots, navigate, check sensors, manage fleets, or perform robot tasks. Supports ROS1 (Noetic) and ROS2 (Jazzy/Humble) through WebSocket, MQTT, or gRPC. Features include intelligent navigation, sensor interpretation, fleet coordination, safety management, and bidirectional real-time streaming to OpenClaw and Web UI.
OPC Journal Suite Async Task Management Module - Local task tracking for background work. Use when: (1) tracking tasks for later, (2) organizing non-urgent work, (3) managing personal todo lists. NOT for: automated execution → tasks are tracked, not executed.
OPC Journal Suite Insight Generation Module - Personalized recommendations and advice. Use when: (1) generating daily/weekly insights, (2) getting personalized recommendations, (3) understanding opportunities and risks. NOT for: professional advice → insights are suggestions, not professional guidance.
OPC Journal Suite Core Module - Smart journaling with automatic linking and retrieval. Use when: (1) recording journal entries, (2) searching historical entries, (3) exporting journals. NOT for: complex queries across multiple users → data is customer-scoped.
OPC Journal Suite Milestone Tracking Module - Achievement detection and celebration. Use when: (1) detecting important moments in user journey, (2) generating milestone reports, (3) tracking progress toward goals. NOT for: automated sharing → celebrations are local-only.
OPC Journal Suite Pattern Recognition Module - Behavioral analysis and habit identification. Use when: (1) analyzing work patterns and rhythms, (2) identifying decision-making styles, (3) detecting productivity trends. NOT for: predicting future outcomes with certainty → patterns are probabilistic.
| name | weather |
| description | Get current weather and forecasts (no API key required). |
| homepage | https://wttr.in/:help |
| metadata | {"clawdbot":{"emoji":"🌤️","requires":{"bins":["curl"]}}} |
Two free services, no API keys needed.
Quick one-liner:
curl -s "wttr.in/London?format=3"
# Output: London: ⛅️ +8°C
Compact format:
curl -s "wttr.in/London?format=%l:+%c+%t+%h+%w"
# Output: London: ⛅️ +8°C 71% ↙5km/h
Full forecast:
curl -s "wttr.in/London?T"
Format codes: %c condition · %t temp · %h humidity · %w wind · %l location · %m moon
Tips:
wttr.in/New+Yorkwttr.in/JFK?m (metric) ?u (USCS)?1 · Current only: ?0curl -s "wttr.in/Berlin.png" -o /tmp/weather.pngFree, no key, good for programmatic use:
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.