Weather Plus

v1.0.1

Get current weather, multi-day forecasts, clothing index, and feels-like temperature. No API key required. Use when a user wants to: (1) Check current weathe...

1· 320·3 current·3 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for elevo11/weather-plus.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Weather Plus" (elevo11/weather-plus) from ClawHub.
Skill page: https://clawhub.ai/elevo11/weather-plus
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install elevo11/weather-plus

ClawHub CLI

Package manager switcher

npx clawhub@latest install weather-plus
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
The code and SKILL.md implement a weather+clothing service using wttr.in (no third‑party weather API key), and include a billing integration with SkillPay.me to charge 0.001 USDT/call — billing is a plausible extra capability for a paid skill, but the top-level registry metadata incorrectly lists no required env vars while SKILL.md and billing.py require SKILLPAY_API_KEY. Also the SKILL.md header's phrase 'No API key required' is ambiguous (it appears to mean no weather API key, but the skill still requires a SkillPay API key for billing).
Instruction Scope
Runtime instructions are explicit: run the provided Python scripts. The scripts only fetch data from wttr.in (weather/forecast) and SkillPay.me (billing). They do not attempt to read arbitrary host files, other env vars, or other system configuration.
Install Mechanism
No install spec or remote downloads are present; the skill is instruction + local Python scripts included in the package, which is low risk from an install mechanism perspective.
!
Credentials
The SKILL.md and scripts require SKILLPAY_API_KEY for billing. The registry metadata (which lists required env vars) does not declare this — an inconsistency that matters because you'd have to provide a billing API key that will be sent to https://skillpay.me. Requiring a single billing key is reasonable for a paid skill, but the missing/contradictory metadata and ambiguous 'No API key required' message are red flags that should be resolved before supplying secrets.
Persistence & Privilege
The skill does not request persistent installation privileges (always:false), does not modify other skills or system-wide agent settings, and has no install-time code that writes system configuration.
What to consider before installing
This skill appears to implement its advertised weather, forecast, and clothing features using wttr.in and includes a billing integration with SkillPay.me. Before installing or entering any API key: (1) Verify the SKILLPAY_API_KEY requirement — the registry metadata omits it but SKILL.md and billing.py require it; (2) Confirm you trust skillpay.me as the billing endpoint and understand charges (calls to billing.py will POST your user_id and the SKILLPAY_API_KEY to that service); (3) If you want to test behavior, run the weather/forecast scripts locally without setting SKILLPAY_API_KEY (they fetch from wttr.in) and inspect billing.py to see what data would be sent; (4) Prefer providing a limited/test billing key or monitor usage if you supply a real key. The inconsistencies are likely sloppy documentation/metadata but should be clarified before you provide credentials or enable automated billing.

Like a lobster shell, security has layers — review code before you run it.

latestvk978qnpp4tesn53776pdafdses82c4zp
320downloads
1stars
2versions
Updated 1mo ago
v1.0.1
MIT-0

Weather Plus

Weather, forecasts, clothing index & feels-like temperature. No API key needed. 0.001 USDT/call.

Commands

CommandScriptDescription
weatherscripts/weather.pyCurrent weather + feels-like
forecastscripts/forecast.pyMulti-day forecast (up to 7 days)
clothingscripts/clothing.pyClothing/dressing index + recommendations
billingscripts/billing.pySkillPay charge/balance/payment

Workflow

1. Billing:   python3 scripts/billing.py --charge --user-id <id>
2. Weather:   python3 scripts/weather.py --city "Beijing"
3. Forecast:  python3 scripts/forecast.py --city "Shanghai" --days 5
4. Clothing:  python3 scripts/clothing.py --city "Chengdu"

Examples

# Current weather
python3 scripts/weather.py --city "New York"
python3 scripts/weather.py --city "成都"

# Multi-day forecast
python3 scripts/forecast.py --city "Tokyo" --days 7

# Clothing index
python3 scripts/clothing.py --city "Beijing"
python3 scripts/clothing.py --city "London"

Config

Env VarRequiredDescription
SKILLPAY_API_KEYYesSkillPay.me API key

References

See references/clothing-index.md for dressing recommendation methodology.

Comments

Loading comments...