c-weather
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
Recommendednpx skills add daxaur/openpaw -a claude-code/plugin add https://github.com/daxaur/openpawgit clone https://github.com/daxaur/openpaw.git ~/.claude/skills/c-weatherCopy 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
| Code | Meaning |
|---|---|
%c | Weather icon |
%t | Temperature |
%f | Feels like |
%h | Humidity |
%w | Wind |
%p | Precipitation |
%l | Location |
%S | Sunrise |
%s | Sunset |
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
Related Skills
qmd
Developmentqmd 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.
subagent-driven-development
DevelopmentThis 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.
mcporter
DevelopmentThe 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.
adk-deployment-specialist
DevelopmentThis 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.
