From timestamps
Show a timestamped timeline of the current Claude Code conversation. Use when the user asks to see when messages were sent, review conversation timing, or wants a history of the session with timestamps.
How this skill is triggered — by the user, by Claude, or both
Slash command
/timestamps:loghaikuThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Display a clean, timestamped timeline of the current conversation by reading
Display a clean, timestamped timeline of the current conversation by reading Claude Code's own transcript file for this project.
Run the timeline script. It locates the current project's transcript automatically and prints the formatted timeline to stdout:
node "${CLAUDE_PLUGIN_ROOT}/scripts/log.js" $ARGUMENTS
Show the script's output to the user inside a fenced code block so the layout is preserved. Do not add commentary, analysis, or summary beyond the timeline itself.
$ARGUMENTS is an optional message count (e.g. 50). If omitted, the script
shows the last 20 messages. A bare number is the count; any non-numeric
argument is treated as an explicit transcript path..jsonl file inside ~/.claude/projects/, parses it, and
prints the result. It never reads the transcript with the Read tool (these
files can be very large).[HH:MM:SS] Name: followed by the message text,
grouped under a date header, with a blank line between entries.Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub llewellynvz/claude-code-timestamps --plugin timestamps