Current Time
Get the current date and time with day of week using the system clock.
Workflow
1. Determine timezone
- Default:
Asia/Shanghai(UTC+8, user's primary timezone). - If the user specifies a different timezone, use that instead.
2. Get current time
Run the following Bash command:
TZ="{timezone}" date "+%Y-%m-%d %A %H:%M:%S %Z"
Example output: 2026-03-09 Monday 23:38:42 CST
3. Use the result
- Parse the output: date, day of week, time, timezone.
- Use this information to answer the user's question or inform your own reasoning.
- Do NOT present the raw command output — incorporate it naturally into your response.