2.5k
GitHub Stars
2
Bundled Files
2 months ago
Catalog Refreshed
3 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill openclaw/skills --skill mock-weather- _meta.json279 B
- SKILL.md1.3 KB
Overview
This skill generates simulated weather reports for any city, providing current conditions and 1–7 day forecasts. It is intended for demos, testing, or situations where a real weather API is unavailable. Results are deterministic per city and date but are explicitly simulated, not actual meteorological data. The skill accepts city names in English or Chinese.
How this skill works
Given a city name and an optional forecast length, the skill deterministically synthesizes weather attributes (condition, temperature range, humidity, wind) based on the city name and current date. Forecast length can be 1 to 7 days; the same city and date produce consistent outputs for repeatability. The tool prints human-readable summaries suitable for UI mockups, automated tests, or demonstration scripts. It warns users that all outputs are simulated and should not be used for real planning.
When to use it
- Building UI prototypes that show weather features without calling a live API
- Demoing conversational agents or dashboards that need weather responses
- Automated tests that require repeatable weather data per city/date
- Teaching or workshops where a predictable weather generator helps illustrate logic
- Fallback mode when a live weather service is unavailable
Best practices
- Always label outputs clearly as simulated data to avoid confusion
- Use the deterministic behavior for reproducible tests by keeping the same city and date
- Limit forecasts to 1–7 days as intended to match the generator’s design
- Combine with locale formatting for temperature units and date display in your app
- Do not rely on this data for safety, travel, or operational decisions
Example use cases
- Generate a mock current weather card for a dashboard prototype
- Produce a 5-day simulated forecast during a presentation to stakeholders
- Populate automated tests that assert consistent weather-driven logic
- Demonstrate multilingual support by inputting city names in English and Chinese
- Create sample chatbot replies showing how weather queries are handled
FAQ
No. All outputs are simulated and should be used only for testing, demos, or illustrative purposes.
What city names are supported?
Any city name string is accepted; the skill supports both English and Chinese names.
How many days of forecast can I request?
Forecasts support 1 to 7 days. Requests outside that range should be limited or validated.