rubix-coder

Claude System Time — Productivity skill for Claude Code

Productivity community

Claude Code plugin with a /time command plus a hook that injects the live date/time into context.

How to install Claude System Time

This entry records only its repository, not the path inside it, so there is no exact command to give. Open rubix-coder/claude-system-time and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Claude System Time does

Claude Code plugin with a /time command plus a hook that injects the live date/time into context.

Alternatives in Productivity

  • Time Command — Display the current date and time in Pakistan Standard Time (PKT, UTC+5) 20.2k ★
  • Claude Hud — A Claude Code plugin that shows what's happening - context usage, active tools, running agents, and todo progr 14k ★
  • Skill Context Detection — Auto-detect work context (Dev vs Knowledge) — use to tailor workflows based on current task type 2.8k ★

README

system-time

A Claude Code plugin that gives Claude the **real** current date, time, and timezone from the system clock, instead of guessing from its training cutoff.

What it does

Piece Behavior
SessionStart hook Injects local time, timezone, ISO 8601, UTC, and epoch at session start.
UserPromptSubmit hook Re-injects the time, throttled to once every 5 minutes, so long sessions stay accurate.
/time command Prints the current date/time on demand. Takes free-form arguments, e.g. /time in Tokyo.
current-time skill Teaches Claude to read the clock for date math, timezone conversion, and timestamps.

Install

Copy or symlink this directory into your plugins directory, then enable it:

claude plugin install system-time

Or, for a local checkout, add a marketplace entry pointing at the parent directory and install from there.

Configuration

`SYSTEM_TIME_THROTTLE` — seconds between per-prompt time injections. Default `300`. Set to `0` to inject on every prompt.

export SYSTEM_TIME_THROTTLE=0

Layout

system-time/
├── .claude-plugin/plugin.json
├── commands/time.md
├── hooks/hooks.json
├── hooks/now.sh
└── skills/current-time/SKILL.md