# Time Tokyo

> Display the current time in Japan Standard Time (JST, UTC+9). Use when the user asks for the current time in Tokyo, Japan time, or JST.

- Skill: `shekerkamma/time-tokyo` (Agent Skill)
- Install (CLI): `npx skillmds@latest add shekerkamma/time-tokyo`
- Raw SKILL.md: https://api.skillmd.com/api/skills/shekerkamma/time-tokyo/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: shekerkamma (https://skillmd.com/u/shekerkamma)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/shekerkamma/time-tokyo

---


# Time Tokyo Skill

This skill displays the current date and time in Japan Standard Time (JST).

## Task

Display the current date and time in Japan Standard Time (UTC+9).

## Instructions

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

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

## Requirements

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

