2.4k
GitHub Stars
2
Bundled Files
2 months ago
Catalog Refreshed
4 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 daily-info- _meta.json276 B
- SKILL.md3.0 KB
Overview
This skill provides a compact daily summary combining Gregorian and lunar calendar details with local weather. It returns date (Gregorian + lunar), solar term, holidays, and detailed weather metrics like temperature, feels-like, humidity, wind, UV, air quality, and dressing advice. It triggers when users ask about today’s date or weather for a city.
How this skill works
The skill fetches the Gregorian date locally and uses a single targeted search to retrieve lunar calendar, solar term, and holiday information to save tokens. For weather it queries wttr.in for human-readable output and falls back to Open-Meteo for programmatic metrics (requires coordinates). Results are merged into a clear, sectioned summary and a concise dressing suggestion.
When to use it
- When the user asks “What’s the date today?” or “Today’s weather?”
- When the user needs both calendar context (lunar/solar/holidays) and weather together
- When the user requests city-specific daily planning information
- When a compact, human-readable daily briefing is needed
- When you want a dressing or travel suggestion based on current conditions
Best practices
- Use a single combined search for lunar date, solar term, and holidays to reduce token use
- Prefer wttr.in for readable weather; use Open-Meteo as a fallback for structured fields
- Extract city name from user input; default to Wuhan when unspecified
- Keep output concise and split into clear blocks with separators
- Avoid repeated searches for the same date information within one session
Example use cases
- User asks: “What’s the date and weather in Wuhan today?” — returns Gregorian, lunar, solar term, holiday status, full weather and dressing tip
- User requests: “Plan clothing for Beijing tomorrow morning” — returns expected temperature, feels-like, wind, and a short dressing suggestion
- User asks: “Is today a holiday and what’s the weather?” — shows holiday info plus weather and travel advice
- Bot provides daily morning briefings to subscribers with date, weather, air quality, and UV warning
FAQ
Default city is Wuhan; prompt the user if they want a different location.
How are lunar and holiday details obtained?
Lunar date, solar term, and holiday info are retrieved with a single targeted search to ensure accuracy and save tokens.
Which weather source is primary?
wttr.in is the primary source for readable output; Open-Meteo is used as a programmatic fallback.