— No reviews yet
0 installs
6 views
0.0% view→install
Install
$ agentstack add skill-joeynyc-skillscore-test-skill ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Are you the author of Test Skill? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claimAbout
Weather Information Fetcher
Fetches current weather data for any city using OpenWeatherMap API.
Dependencies
- curl or wget for HTTP requests
- OpenWeatherMap API key (free registration at openweathermap.org)
- Environment variable: OPENWEATHERAPIKEY
Installation
- Sign up for API key at https://openweathermap.org/api
- Set environment variable:
export OPENWEATHER_API_KEY=your_api_key - Ensure curl is installed:
which curl
Usage
- When user asks for weather information for a specific city
- Extract the city name from the request
- Make API call:
curl "http://api.openweathermap.org/data/2.5/weather?q=CITY&appid=$OPENWEATHER_API_KEY&units=metric" - Parse the JSON response and format for user
- Handle errors gracefully if city not found or API unavailable
Examples
# Example API call
curl "http://api.openweathermap.org/data/2.5/weather?q=London&appid=your_api_key&units=metric"
Expected response includes temperature, description, humidity, and pressure.
Error Handling
- No API key: Prompt user to set OPENWEATHERAPIKEY environment variable
- City not found: Return "City not found, please check spelling"
- API down: Fallback to generic message "Weather service temporarily unavailable"
- Network error: Retry once, then inform user of connection issue
Limitations
- Requires internet connection
- API has rate limits (1000 calls/day for free tier)
- Only supports current weather (not forecasts)
- City names must be in English
Troubleshooting
If you get "unauthorized" error:
- Verify API key is correct
- Check if key is activated (can take up to 10 minutes)
- Ensure environment variable is set properly
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: joeynyc
- Source: joeynyc/skillscore
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.