Back to Skills

c-weather

daxaur
Updated Yesterday
1 views
143
6
143
View on GitHub
Developmentweatherforecasttemperatureassistant

About

c-weather provides weather forecasts and current conditions via curl commands using the wttr.in service, requiring no API key. It supports location auto-detection, specific city queries, and multiple output formats including compact one-line, detailed, and JSON. Developers can use it for quick weather lookups directly from the terminal or to integrate weather data into scripts.

Quick Install

Claude Code

Recommended
Primary
npx skills add daxaur/openpaw -a claude-code
Plugin CommandAlternative
/plugin add https://github.com/daxaur/openpaw
Git CloneAlternative
git clone https://github.com/daxaur/openpaw.git ~/.claude/skills/c-weather

Copy and paste this command in Claude Code to install this skill

Documentation

Weather — Forecasts & Conditions

Get weather information using curl and wttr.in. No API key required, no tool to install.

Commands

# Current weather (auto-detects location)
curl -s "wttr.in?format=3"

# Detailed current conditions
curl -s "wttr.in?format=%l:+%c+%t+%h+%w+%p"

# Full forecast (today + 2 days)
curl -s "wttr.in"

# Specific city
curl -s "wttr.in/London"
curl -s "wttr.in/New+York"
curl -s "wttr.in/Tokyo"

# Compact one-line
curl -s "wttr.in/Paris?format=%l:+%c+%t+(feels+like+%f)+%h+humidity+%w+wind"

# Today only
curl -s "wttr.in/Berlin?1"

# JSON output for parsing
curl -s "wttr.in/London?format=j1"

# Moon phase
curl -s "wttr.in/Moon"

Format Codes

CodeMeaning
%cWeather icon
%tTemperature
%fFeels like
%hHumidity
%wWind
%pPrecipitation
%lLocation
%SSunrise
%sSunset

Guidelines

  • Default to the user's location (check memory/SOUL.md for city)
  • Use compact format (format=3) for quick checks
  • Use full output for detailed forecasts
  • If the user asks about weather, always provide temperature and conditions
  • Mention "feels like" temperature when it differs significantly

GitHub Repository

daxaur/openpaw
Path: skills/c-weather
0
ai-agentanthropicautomationclaudeclaude-codecli

Related Skills

qmd

Development

qmd is a local search and indexing CLI tool that enables developers to index and search through local files using hybrid search combining BM25, vector embeddings, and reranking. It supports both command-line usage and MCP (Model Context Protocol) mode for integration with Claude. The tool uses Ollama for embeddings and stores indexes locally, making it ideal for searching documentation or codebases directly from the terminal.

View skill

subagent-driven-development

Development

This skill executes implementation plans by dispatching a fresh subagent for each independent task, with code review between tasks. It enables fast iteration while maintaining quality gates through this review process. Use it when working on mostly independent tasks within the same session to ensure continuous progress with built-in quality checks.

View skill

mcporter

Development

The mcporter skill enables developers to manage and call Model Context Protocol (MCP) servers directly from Claude. It provides commands to list available servers, call their tools with arguments, and handle authentication and daemon lifecycle. Use this skill for integrating and testing MCP server functionality in your development workflow.

View skill

adk-deployment-specialist

Development

This skill deploys and orchestrates Vertex AI ADK agents using A2A protocol, managing AgentCard discovery, task submission, and supporting tools like Code Execution Sandbox and Memory Bank. It enables building multi-agent systems with sequential, parallel, or loop orchestration patterns in Python, Java, or Go. Use it when asked to deploy ADK agents or orchestrate agent workflows on Google Cloud.

View skill