Use when adding new error messages to React, or seeing "unknown error code" warnings.
npx skills add pailinglo/claude-skills --skill "weather"
Install specific skill from multi-skill repository
# Description
Get current weather information for a location
# SKILL.md
name: weather
description: Get current weather information for a location
When the user asks for weather information:
- If they provide a location in $ARGUMENTS, use that location
- If no location is provided, fetch weather for their current location (automatic)
- Use the wttr.in service to get weather data
- Display the weather information in a clean, readable format
To fetch weather:
- Use: curl "wttr.in/{location}?format=3" for a simple one-line format
- Or use: curl "wttr.in/{location}" for detailed weather with forecast
- For current location (no arguments): curl "wttr.in/?format=3"
Show:
- Current temperature and conditions
- Location name
- Brief description of what to expect today
Keep the response concise and helpful.
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.