skills/weather/SKILL.md
# Weather Skill ## Purpose Get current weather information and forecasts for any location. ## How to Execute This Skill When the user asks about weather, use the Bash tool to run: ```bash ~/ARDEN/skills/weather/tools/get-weather.sh "LOCATION" ``` Where LOCATION = city name, zip code, or "current" for user's current location **Examples:** ```bash ~/ARDEN/skills/weather/tools/get-weather.sh "Chicago" ~/ARDEN/skills/weather/tools/get-weather.sh "60601" ~/ARDEN/skills/weather/tools/get-weather
npx skillsauth add infurno/arden skills/weatherInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Get current weather information and forecasts for any location.
When the user asks about weather, use the Bash tool to run:
~/ARDEN/skills/weather/tools/get-weather.sh "LOCATION"
Where LOCATION = city name, zip code, or "current" for user's current location
Examples:
~/ARDEN/skills/weather/tools/get-weather.sh "Chicago"
~/ARDEN/skills/weather/tools/get-weather.sh "60601"
~/ARDEN/skills/weather/tools/get-weather.sh "New York"
The script returns weather info in a voice-friendly format.
This skill should be automatically invoked when the user:
Voice responses should be:
User: "What's the weather like?"
ARDEN:
Currently 45 degrees and partly cloudy in Chicago. Feels like 42. Light winds from the west at 8 miles per hour. No rain expected today. High of 52, low of 38. Recommendation: Light jacket should be fine.
User: "Will it rain tomorrow?"
ARDEN:
Tomorrow in Chicago: 30% chance of rain in the afternoon. High of 48, mostly cloudy. You might want to keep an umbrella handy.
Default location can be set in skills/weather/context/default-location.txt
get-weather.sh - Fetch current weather for a locationget-forecast.sh - Get 3-day forecastweather-alert.sh - Check for weather alertsdefault-location.txt - User's default locationweather-preferences.md - Temperature units, detail levelBest used with:
tools
# User Context Skill ## Overview Provides structured user profile and context information to other skills and AI interactions. Ensures consistent personalization across all ARDEN features. ## Purpose - Supply user profile information to skills - Maintain consistent context across sessions - Enable personalized note-taking and task management - Support context-aware AI responses ## Components ### Tools - **user_context.sh**: Retrieves user context in multiple formats ### Context Files User c
tools
# TODO Management Skill ## Purpose Quickly add TODO items to the appropriate category (work, personal, or side-projects) via chat, voice, or web interface. TODOs are saved as markdown checkboxes in categorized files and automatically consolidated. ## How to Execute This Skill When the user wants to add a TODO, analyze the content to determine the category, then use the Bash tool to run: ```bash ~/ARDEN/skills/todo-management/tools/add-todo.sh "TODO_TEXT" "category" ``` Where: - TODO_TEXT =
tools
# Note-Taking Skill ## Purpose Capture notes via voice or text and save them as markdown files in your notes directory. ## How to Execute This Skill When the user wants to create a note, use the Bash tool to run: ```bash ~/ARDEN/skills/note-taking/tools/create-note.sh "CONTENT" "TYPE" [-c] ``` Where: - CONTENT = The user's note content (extract from their message) - TYPE = quick|meeting|idea|todo (default: quick) - -c = Optional flag to include user context in note footer The script will:
data-ai
# Daily Planning Skill ## Purpose Provides daily planning, scheduling, and task prioritization capabilities with voice-first interaction design. ## When to Invoke This skill should be automatically invoked when the user: - Asks about their schedule or calendar - Requests a daily briefing or morning summary - Wants to plan their day - Asks "what should I do today?" or similar - Requests task prioritization - Says phrases like: - "What's on my agenda?" - "Plan my day" - "Morning briefing"