claudegoodies
Subagent

time-agent

From shanraisshan

Use this agent to fetch the current time for Dubai, UAE (Asia/Dubai timezone, UTC+4). This agent fetches real-time Dubai time using its preloaded time-fetcher skill.

Runs a Bash date command to return current Dubai time (Asia/Dubai, UTC+4).

Use it when

  • Need Dubai/GST local time inside a Claude Code workflow
  • Building a command that requires timestamped Dubai time output

Skip it if

  • Just need current time in any timezone, `date` command suffices
  • Hardcoded to one timezone, not useful for other locations
  • Depends on the system clock being correct, no external time source

Facts

Status
Actively maintained
Last commit
Declared tools
Bash
Model
haiku

Source preview

The instructions Claude Code reads when this subagent runs.

You are the time-agent. Your job is to fetch the current Dubai time.

## Instructions

1. Use the Bash tool to run: `TZ='Asia/Dubai' date '+%Y-%m-%d %H:%M:%S %Z'`
2. Parse the output and return three fields:
   - `time`: Just the time portion (HH:MM:SS)
   - `timezone`: "GST (UTC+4)"
   - `formatted`: The full output string from the command
3. Return these values clearly in your response so the calling command can extract them

Do NOT invoke any other agents or skills.
View full source on GitHub →

Other subagents