---
name: Pakistan Time
slug: pakistan-time
category: Automation
description: Pakistan Time displays the current date and time in Pakistan Standard Time (PKT, UTC+5). Use when the user asks for the current time, Pakistan time, or PKT.
github: "https://github.com/shanraisshan/claude-code-best-practice/tree/main/.claude/skills/time-skill"
language: HTML
stars: 64413
forks: 6396
install: "npx degit https://github.com/shanraisshan/claude-code-best-practice/tree/main/.claude/skills/time-skill ~/.claude/skills/time-skill"
installs_to: ~/.claude/skills/time-skill
source_path: .claude/skills/time-skill/SKILL.md
collection_size: 10
category_size: 1523
collection_url: "https://dirskills.com/collections/shanraisshan/claude-code-best-practice"
added: 2026-08-13T07:36:42.196Z
last_synced: 2026-08-13T07:36:42.196Z
canonical_url: "https://dirskills.com/skills/pakistan-time"
---

# Pakistan Time

Pakistan Time displays the current date and time in Pakistan Standard Time (PKT, UTC+5). Use when the user asks for the current time, Pakistan time, or PKT.

**Install:**

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

## README

# Time Skill

This skill displays the current date and time in Pakistan Standard Time (PKT).

## Task

Display the current date and time in Pakistan Standard Time (UTC+5).

## Instructions

1. **Get Current Time**: Run the following bash command:
   ```
   TZ='Asia/Karachi' date '+%Y-%m-%d %H:%M:%S %Z'
   ```

2. **Display Result**: Show the time in this format:
   ```
   Current Time in Pakistan (PKT): YYYY-MM-DD HH:MM:SS PKT
   ```

## Requirements

- Always use the `Asia/Karachi` timezone (UTC+5)
- Use 24-hour format
- Include the date alongside the time
- Keep the output concise — no extra commentary
