Token导航 LogoToken导航TokenDH.com
待分类只读github未标认证来源可访问许可证需确认审计提醒

temporal-awareness时间意识

Agent Skill

temporal-awareness 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

612

周安装

26

GitHub Stars

13

下载量

214
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:temporal-awareness(时间意识)
来源仓库:https://github.com/jpcaparas/skills
仓库路径:skills/temporal-awareness
安装命令:
npx skills add https://github.com/jpcaparas/skills --skill temporal-awareness
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/jpcaparas/skills --skill temporal-awareness

简介

temporal-awareness 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 适用于时间敏感型任务、事件驱动开发和实时系统监控场景。
  • 可识别时间相关逻辑、调度策略和异步操作流程。
  • 安装命令:npx skills add https://github.com/jpcaparas/skills --skill temporal-awareness。
  • 使用前需确认权限范围、维护状态及是否触发联网或文件读写操作。

SKILL.md

temporal-awareness

Ground the session in the real clock before answering anything that could have changed.

Verified locally on April 9, 2026 in Pacific/Auckland (NZST, UTC+12). The motivating failure mode is real: OpenAI's official Help Center now documents GPT-5.3 and GPT-5.4 in ChatGPT, while stale assistants still default to GPT-4o-era wording from older memory.

Decision Tree

What is the time-sensitive failure mode?

  • Need a clean session anchor before answering

- Run python3 scripts/capture_temporal_context.py --format markdown - Read references/bootstrap.md

  • Need to decide whether a prompt can be answered from stable knowledge or needs live verification

- Run python3 scripts/recency_guard.py --prompt "..." --format markdown - Read references/recency-triage.md

  • Need patterns for latest, today, yesterday, tomorrow, timezone math, or source selection

- Read references/verification-patterns.md

  • Need refresh rules for long-running sessions, day rollovers, or recurring work

- Read references/long-horizon.md

  • Need to debug stale assumptions, outdated model names, or relative-date mistakes

- Read references/gotchas.md

Quick Reference

TaskCommand or fileWhy
Capture local and UTC time contextpython3 scripts/capture_temporal_context.py --format markdownLoad the real clock into the session before answering
Compare the current moment across zonespython3 scripts/capture_temporal_context.py --format markdown --extra-zone America/New_York --extra-zone Europe/LondonAvoid silent timezone drift
Classify whether a prompt needs live verificationpython3 scripts/recency_guard.py --prompt "What is the latest OpenAI model for coding?" --format markdownSeparate stable questions from volatile ones
Run the deterministic probe suitepython3 scripts/probe_temporal_awareness.py --format prettyVerify the skill still behaves as designed
Learn the startup workflowreferences/bootstrap.mdSession-load order and exact commands
Handle relative dates and volatile factsreferences/verification-patterns.mdAbsolute-date conversion and source selection

Reading Guide

If the user says...Read
"Before you answer, what date is it here and what timezone are we using?"references/bootstrap.md
"Do I need to browse for this or is it stable?"references/recency-triage.md
"What does latest mean here?"references/verification-patterns.md
"This session has been running for hours, should we refresh the date context?"references/long-horizon.md
"Why are agents still mentioning GPT-4o / old CEOs / stale prices?"references/gotchas.md

Operational Rules

  1. Run scripts/capture_temporal_context.py before answering any prompt that uses relative time language or depends on the current date, time, or timezone.
  2. Run scripts/recency_guard.py on prompts containing latest, current, today, yesterday, tomorrow, recent, as of, or volatile domains such as models, prices, laws, schedules, weather, executives, or live events.
  3. Treat the system clock as authoritative for local date and time, but treat external current facts as untrusted until verified against live sources.
  4. Convert relative dates into absolute dates before answering whenever there is even a small chance the user is thinking in a different timezone.
  5. Refresh the temporal anchor when the session crosses midnight, spans multiple hours, changes timezone context, or revisits rolling external data.

Verified Behaviors

  1. scripts/capture_temporal_context.py emits local and UTC timestamps, timezone name candidates, UTC offset, locale, platform, and optional extra-zone snapshots.
  2. scripts/recency_guard.py detects relative-date language and volatile domains, and distinguishes stable historical prompts from current-state prompts.
  3. scripts/probe_temporal_awareness.py runs deterministic checks across smoke, edge, negative, and disclosure-style scenarios.
  4. The skill explicitly treats model families and product versions as volatile; this prevents stale answers like defaulting to GPT-4o when the official docs have moved on.
  5. Long-running sessions get explicit refresh rules instead of assuming the first temporal anchor stays valid forever.

Gotchas

  1. Do not confuse clock grounding with live verification: the system clock can tell you what day it is locally, but it cannot tell you today's stock price or the current CEO.
  2. Relative dates are timezone-dependent: today, yesterday, and tomorrow are wrong if you silently assume UTC while the user is thinking locally.
  3. Historical facts are not the same as current-state facts: Who won the 2024 election? is usually stable; Who is president now? is not.
  4. Model names drift faster than agents admit: treat model families, versions, limits, and availability as volatile unless you just verified them.
  5. Long sessions go stale: if work spans a day boundary or a DST change, rerun the capture step and restate the new absolute date.

Helper Scripts

  • scripts/capture_temporal_context.py prints a session-ready time anchor in JSON, text, or Markdown.
  • scripts/recency_guard.py classifies a prompt as stable, system-clock-sensitive, or live-verification-required.
  • scripts/probe_temporal_awareness.py runs deterministic regression checks across the core heuristics.
  • scripts/validate.py validates structure, references, eval coverage, and Python syntax.
  • scripts/test_skill.py validates the packaging and runs the temporal probe suite.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.07%
按下载量换算77

Claude

30.11%
按下载量换算64

Cursor

16.68%
按下载量换算36

Gemini CLI

10.04%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills