> system-time
Get accurate system time in various formats and timezones. Use when the user needs to know the current time, date, timestamp, or wants to convert between timezones. Supports ISO 8601, Unix timestamp, human-readable formats, and timezone conversions.
curl "https://skillshub.wtf/LeoYeAI/openclaw-master-skills/hengheng-system-time?format=md"System Time
Get accurate system time information in multiple formats.
Quick Usage
Current Time (Local)
date # Human readable
date -Iseconds # ISO 8601 with seconds
date +%s # Unix timestamp
Current Time (UTC)
date -u # UTC human readable
date -u -Iseconds # UTC ISO 8601
date -u +%s # UTC Unix timestamp (same as local)
Specific Timezone
TZ=Asia/Shanghai date # Shanghai time
TZ=America/New_York date # New York time
TZ=Europe/London date # London time
Common Formats
| Format | Command | Example Output |
|---|---|---|
| ISO 8601 | date -Iseconds | 2024-03-11T16:30:00+08:00 |
| Unix timestamp | date +%s | 1710145800 |
| RFC 2822 | date -R | Mon, 11 Mar 2024 16:30:00 +0800 |
| Custom | date "+%Y-%m-%d %H:%M:%S" | 2024-03-11 16:30:00 |
Timezone Conversion
Convert from one timezone to another:
# Convert specific time from Shanghai to New York
TZ=America/New_York date -d "2024-03-11 16:30:00 CST"
# List available timezones
ls /usr/share/zoneinfo/
Python Alternative (for scripting)
from datetime import datetime, timezone
# Current UTC time
utc_now = datetime.now(timezone.utc)
print(utc_now.isoformat())
# Current local time
local_now = datetime.now()
print(local_now.isoformat())
# Unix timestamp
print(int(utc_now.timestamp()))
Notes
- Unix timestamp is always UTC (timezone-independent)
- ISO 8601 format includes timezone offset
- Use
timedatectlon Linux systems for system clock info
> related_skills --same-repo
> youtube-watcher
Fetch and read transcripts from YouTube videos. Use when you need to summarize a video, answer questions about its content, or extract information from it.
> youtube-transcript
Fetch and summarize YouTube video transcripts. Use when asked to summarize, transcribe, or extract content from YouTube videos. Handles transcript fetching via residential IP proxy to bypass YouTube's cloud IP blocks.
> youtube-auto-captions
youtube-auto-captions skill from LeoYeAI/openclaw-master-skills
> youtube
YouTube Data API integration with managed OAuth. Search videos, manage playlists, access channel data, and interact with comments. Use this skill when users want to interact with YouTube. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).