Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Time Awareness

ASecurity

Use when a claude-timestamp system reminder or Codex hook context says how long a turn has run, that a tool call was slow, or that a conversation or project is resumed after a gap; when the user asks how long something took, when they started, or where their time went; and before writing a date into notes, memory, a commit or a document.

3 stars
0 votes
0 copies
0 views
Added 9/20/2026
toolsgobashgit

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add AraneaDev/claude-timestamp --skill time-awareness --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Time Awareness?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Time Awareness
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/araneadev-time-awareness/badge)](https://www.skillsdirectory.com/skills/araneadev-time-awareness)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: time-awareness
description: Use when a claude-timestamp system reminder or Codex hook context says how long a turn has run, that a tool call was slow, or that a conversation or project is resumed after a gap; when the user asks how long something took, when they started, or where their time went; and before writing a date into notes, memory, a commit or a document.
user-invocable: false
---

# Time awareness

claude-timestamp tells you about time in short system reminders or hook context.
They state facts and nothing else. This is what to do with them.

## The reminders

**`Message sent at local time 10:37:21 CEST, after a 3h break`** arrives with
every prompt. It is when the user pressed enter, not the time now.

**`Turn running 30m04s (prompt sent 10:37:21); now 11:07:25 CEST.`** means the
turn you are in has run that long without hearing from the user.

- Check that the work still matches what was asked. Drift costs less to catch
  now than at the end.
- From the second one onward, consider finishing the step you are on and
  reporting back instead of opening new scope. That is a judgement call: a
  long job the user asked you to run unattended should keep going.

**`That Bash call took 2m14s.`** means one call was slow. Before running the
same thing again:

- run it with `run_in_background` and keep working meanwhile,
- narrow it: one test file, one package, a filter, or
- reuse the output you already have, when nothing it depends on has changed.

**`Previous session in this project ended 14h ago (Thu 20:12:05).`** and
**`Resuming this conversation; last activity 14h ago (Thu 20:12:05).`** mean
that what you knew before the gap may be stale. Before building on it, check
what could have moved: the branch and `git status`, running servers, open
pull requests and CI runs, and files the user may have edited meanwhile.

## Time in general

- During a long turn, get the current time from `date`. The last stamp in the
  conversation is when the user spoke.
- Refer to earlier messages by the time on their stamp ("the change you asked
  for at 10:37") rather than "earlier" or "just now".
- Write absolute dates in anything that outlives the conversation: "Thursday"
  becomes 2026-09-10.
- Answer questions about duration from measurement, never from how long the
  conversation feels.

## Measuring

This session so far:

```bash
setup="$(git rev-parse --show-toplevel 2>/dev/null || true)/hooks/scripts/setup.sh"
if [ ! -f "$setup" ] && [ -n "${CLAUDE_SKILL_DIR:-}" ]; then
  setup="${CLAUDE_SKILL_DIR}/../../hooks/scripts/setup.sh"
fi
bash "$setup" --session
```

In both reports, **waiting** is the time the user spent waiting for your
replies, from each prompt to its answer. **Away** is the breaks between one
of your replies and the user's next prompt. Neither is time you spent
waiting for the user.

Recorded sessions, all of them, the last week, or one project:

```bash
setup="$(git rev-parse --show-toplevel 2>/dev/null || true)/hooks/scripts/setup.sh"
if [ ! -f "$setup" ] && [ -n "${CLAUDE_SKILL_DIR:-}" ]; then
  setup="${CLAUDE_SKILL_DIR}/../../hooks/scripts/setup.sh"
fi
bash "$setup" --stats
bash "$setup" --stats --since=7d
bash "$setup" --stats --project=NAME
```

Sessions carry a project name only when the user turned on `PROJECTS`;
without it `--stats` shows no per-project breakdown. Tool timings are kept per
tool name, not per command, and only with `TOOL_TIMING` on. "How long did
`npm test` take" therefore has an answer only in the slow-call reminders
already in this conversation.

Attribution

AraneaDevAraneaDev
View sourceMore from AraneaDev →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

ucoz-landing-skill

Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...

107 votes

Paperclip

Interact with the Paperclip control plane API for task coordination and governance. Use when checking assignments, updating issue status, posting comments, delegating work, managing routines, or calling Paperclip API endpoints.

805541 votes

Daw Music

Digital Audio Workstation usage, music composition, interactive music systems, and game audio implementation for immersive soundscapes.

761 votes

Instantly Rdsthomas Mission Control

Instantly.ai cold email outreach API - manage campaigns, leads, accounts, and analytics. Use for cold email automation, lead management, campaign creation/monitoring, and email account warmup.

761 votes

Caveman Compress

Compress natural language memory files (CLAUDE.md, todos, preferences) into caveman format to save input tokens. Preserves all technical substance, code, URLs, and structure. Compressed version overwrites the original file. Human-readable backup saved as FILE.original.md. Trigger: /caveman-compress FILEPATH or "compress memory file"

1023330 votes
View all in tools →