2.6k
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 time-checker- _meta.json279 B
- SKILL.md1.2 KB
Overview
This skill fetches precise current time, date, and timezone information for any location worldwide using time.is as the authoritative source. It provides reliable, up-to-the-minute results suitable for scheduling and verification. The implementation is a simple Python utility that accepts location names and returns formatted time and offset details.
How this skill works
The skill queries time.is for a given city or location and parses the returned page to extract the current local time, date, timezone name, and UTC offset. It handles common location input styles (spaces, hyphens, underscores) and falls back to nearby prominent cities when exact matches are unavailable. The script relies on requests and BeautifulSoup for fetching and parsing HTML, making results fast and reproducible.
When to use it
- When a user asks "what time is it in X" or "current time in Y"
- When verifying timezone offsets for cross-timezone scheduling
- When confirming the local date near midnight across different zones
- When you need a trusted source for time accuracy in automation or reporting
Best practices
- Prefer city names (e.g., "Jakarta" instead of a whole country) for higher accuracy
- Verify spelling or try a well-known nearby city if a location is not found
- Ensure requests and beautifulsoup4 are installed in the runtime environment
- Use time.is results as the authoritative reference when coordinating meetings
Example use cases
- Responding to user queries like "What time is it in New York right now?"
- Checking UTC offset when creating calendar events across time zones
- Validating time-sensitive automation before deploying scheduled jobs
- Confirming local date/time near midnight to avoid off-by-one-day errors
FAQ
Location names with spaces, hyphens, or underscores; city names give best results.
What dependencies are required?
The script requires the requests and beautifulsoup4 Python packages.