mit einem Klick
timezone
// Show current times across Mark's key locations. Use when Mark says "timezone", "what time is it", "team times", "check the time in", or wants to know working hours for his team.
// Show current times across Mark's key locations. Use when Mark says "timezone", "what time is it", "team times", "check the time in", or wants to know working hours for his team.
Summarize the current conversation into a TLDR note and save it to your notes folder. Use when you say "tldr", "save a summary", "note this convo", or want to capture key takeaways from the current session for future reference.
Manage your Gmail inbox from Claude Code. List, read, triage, reply, send, and create filters.
Manage your Google Calendar from Claude Code. Create events with Meet links, send invites, check availability.
Manage Slack from Claude Code. List conversations, read messages, send replies, search for channels and DMs.
| name | timezone |
| description | Show current times across Mark's key locations. Use when Mark says "timezone", "what time is it", "team times", "check the time in", or wants to know working hours for his team. |
Show current times for Mark's key locations. Run this bash command and display the results in a clean table:
echo "---"
echo "Location | Timezone | Local Time"
echo "---"
for tz in "Morocco:Africa/Casablanca" "London:Europe/London" "Karachi:Asia/Karachi" "Brazil:America/Sao_Paulo" "Egypt:Africa/Cairo"; do
IFS=':' read -r label zone <<< "$tz"
time=$(TZ="$zone" date +"%I:%M %p (%a)")
printf "%-16s | %-21s | %s\n" "$label" "$zone" "$time"
done
echo "---"
Format the output as a clean table. After the table, add a one-line note about who's likely in working hours (9am-6pm local) right now.
Key people by location: