# Current Time

> Get the current date and time. Use when a log timestamp or time check is needed.

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

---


# Current Time Skill

## When to Use
- When the current date or time is needed.
- When used for logging or time-based processing.

## Procedure
1. Run the following command to get the current date and time.
2. Change the format if needed.

```sh
date +"%Y-%m-%d %H:%M:%S %z"
# => YYYY-MM-DD HH:MM:SS +ZZZZ
```

