---
name: Time Fetcher
slug: time-fetcher
category: Automation
description: Time Fetcher provides a bash command to fetch the current Dubai time in Asia/Dubai. Use it when you need the current time in Gulf Standard Time (UTC+4), including formatted and time-only fields.
github: "https://github.com/shanraisshan/claude-code-best-practice/tree/main/agent-teams/.claude/skills/time-fetcher"
language: HTML
stars: 64413
forks: 6396
install: "npx degit https://github.com/shanraisshan/claude-code-best-practice/tree/main/agent-teams/.claude/skills/time-fetcher ~/.claude/skills/time-fetcher"
installs_to: ~/.claude/skills/time-fetcher
source_path: agent-teams/.claude/skills/time-fetcher/SKILL.md
collection_size: 10
category_size: 1523
collection_url: "https://dirskills.com/collections/shanraisshan/claude-code-best-practice"
added: 2026-08-13T07:36:43.540Z
last_synced: 2026-08-13T07:36:43.540Z
canonical_url: "https://dirskills.com/skills/time-fetcher"
---

# Time Fetcher

Time Fetcher provides a bash command to fetch the current Dubai time in Asia/Dubai. Use it when you need the current time in Gulf Standard Time (UTC+4), including formatted and time-only fields.

**Install:**

```bash
npx degit https://github.com/shanraisshan/claude-code-best-practice/tree/main/agent-teams/.claude/skills/time-fetcher ~/.claude/skills/time-fetcher
```

## README

## Dubai Time Fetcher

### Command

```bash
TZ='Asia/Dubai' date '+%Y-%m-%d %H:%M:%S %Z'
```

### Expected Output Format

`YYYY-MM-DD HH:MM:SS +04` (Gulf Standard Time)

### Timezone Details

- Timezone: Asia/Dubai
- Offset: UTC+4
- Abbreviation: GST (Gulf Standard Time)
- Dubai does not observe daylight saving time

### Return Format

Provide the following fields:
- `time`: Just the time portion (HH:MM:SS)
- `timezone`: "GST (UTC+4)"
- `formatted`: The full output string from the command
