Token导航 LogoToken导航TokenDH.com
开发external-serviceclawhub未标认证来源可访问clear审计提醒

temporal-cortex-datetime颞叶皮层日期时间

Agent Skill

temporal-cortex-datetime 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

23,943

周安装

1,018

GitHub Stars

1

下载量

8,388
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:temporal-cortex-datetime(颞叶皮层日期时间)
来源仓库:https://github.com/billylui/temporal-cortex-datetime
安装命令:
openclaw skills install temporal-cortex-datetime
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install temporal-cortex-datetime

简介

自然语言时间解析与时区转换基础服务。

  • 支持“下周二下午两点”这类口语化表达识别。
  • 自动处理夏令时 DST 偏移量调整问题。
  • 零配置开箱即用无需任何密钥依赖。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 适用于全球分布式团队协作场景。temporal-cortex-datetime 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
temporal-cortex-datetime
description
|-
license
MIT
compatibility
|-
metadata
author
temporal-cortex
version
0.9.1
mcp-server
@temporal-cortex/cortex-mcp
homepage
https://temporal-cortex.com
repository
https://github.com/temporal-cortex/skills
openclaw
install
package
@temporal-cortex/cortex-mcp@0.9.1
bins
[cortex-mcp]
requires
bins
config

Temporal Context & Datetime Resolution

5 tools for temporal orientation and datetime computation. All tools execute locally within the compiled MCP server binary — no external API calls, no network access at runtime, no credential files. The binary is installed once via npm (or built from source with Docker) and all subsequent executions are fully offline. No OAuth or credentials required. Timezone and week-start preferences are stored in config.json. Unset fields default to system timezone and Monday week-start.

Source & Provenance

Tools

ToolWhen to Use
get_temporal_contextFirst call in any session. Returns current time, timezone, UTC offset, DST status, DST prediction, day of week.
resolve_datetimeConvert human expressions to RFC 3339. Supports 60+ patterns: "next Tuesday at 2pm", "tomorrow morning", "+2h", "start of next week", "third Friday of March".
convert_timezoneConvert RFC 3339 datetime between IANA timezones.
compute_durationDuration between two timestamps (days, hours, minutes).
adjust_timestampDST-aware timestamp adjustment. "+1d" across spring-forward = same wall-clock time.

Runtime

These tools run inside the Temporal Cortex MCP server (@temporal-cortex/cortex-mcp), a compiled Rust binary distributed as an npm package.

Install and startup lifecycle:

  1. npx resolves @temporal-cortex/cortex-mcp from the npm registry (one-time, cached locally after first download)
  2. The postinstall script downloads the platform-specific binary from the GitHub Release and verifies its SHA256 checksum against the embedded checksums.jsoninstallation halts on mismatch
  3. The MCP server starts as a local process communicating over stdio (no listening ports)
  4. All 5 datetime tools execute locally — zero network access, zero filesystem writes, no credentials

Network access: Only during the initial npm download. Once cached, subsequent launches are fully offline. The 5 datetime tools make zero network requests — all computation is local.

File access: The binary reads ~/.config/temporal-cortex/config.json for timezone and week-start preferences. Unset or missing fields default to system values. No filesystem writes. No credential files accessed.

No credentials required. Unlike the scheduling skill, this skill needs no OAuth tokens or API keys.

Pre-run verification (recommended before first use):

  1. Inspect the npm package without executing: npm pack @temporal-cortex/cortex-mcp --dry-run
  2. Verify checksums independently against the GitHub Release (see verification pipeline below)
  3. For full containment, run in Docker instead of npx (see Docker containment below)

Verification pipeline: Checksums are published independently at each GitHub Release as SHA256SUMS.txt — verify the binary before first use:

# 1. Fetch checksums from GitHub (independent of the npm package)
curl -sL https://github.com/temporal-cortex/mcp/releases/download/mcp-v0.9.1/SHA256SUMS.txt

# 2. Compare against the npm-installed binary
shasum -a 256 "$(npm root -g)/@temporal-cortex/cortex-mcp/bin/cortex-mcp"

As defense-in-depth, the npm package also embeds checksums.json and the postinstall script compares SHA256 hashes during install — installation halts on mismatch (the binary is deleted, not executed). This automated check supplements, but does not replace, independent verification above.

Build provenance: Binaries are cross-compiled from auditable Rust source in GitHub Actions across 5 platforms (darwin-arm64, darwin-x64, linux-x64, linux-arm64, win32-x64). Source: github.com/temporal-cortex/mcp (MIT-licensed). The CI workflow, build artifacts, and release checksums are all publicly inspectable.

Docker containment (recommended for maximum isolation — zero Node.js dependency, zero host filesystem access, zero network after build):

{
  "mcpServers": {
    "temporal-cortex": {
      "command": "docker",
      "args": ["run", "--rm", "-i", "--network=none", "cortex-mcp"]
    }
  }
}

Build: docker build -t cortex-mcp https://github.com/temporal-cortex/mcp.git — No volume mount needed since the datetime skill requires no OAuth tokens or credential files. The --network=none flag enforces the zero-network guarantee at the OS level.

Critical Rules

  1. Always call get_temporal_context before time-dependent work — never assume the time or timezone.
  2. Resolve before querying — convert "next Tuesday at 2pm" to RFC 3339 with resolve_datetime before passing to calendar tools.
  3. Timezone awareness — all datetime tools produce RFC 3339 with timezone offsets.

resolve_datetime Expression Patterns

The expression parser supports 60+ patterns across 10 categories:

CategoryExamples
Relative"now", "today", "tomorrow", "yesterday"
Named days"next Monday", "this Friday", "last Wednesday"
Time of day"morning" (09:00), "noon", "evening" (18:00), "eob" (17:00)
Clock time"2pm", "14:00", "3:30pm"
Offsets"+2h", "-30m", "in 2 hours", "3 days ago"
Compound"next Tuesday at 2pm", "tomorrow morning", "this Friday at noon"
Period boundaries"start of week", "end of month", "start of next week", "end of last month"
Ordinal weekday"first Monday of March", "third Friday of next month"
RFC 3339 passthrough"2026-03-15T14:00:00-04:00" (returned as-is)
Week start awareUses configured WEEK_START (Monday default, Sunday option)

Common Patterns

Get Current Time Context

get_temporal_context()
→ utc, local, timezone, utc_offset, dst_active, dst_next_transition,
  day_of_week, iso_week, is_weekday, day_of_year, week_start

Resolve a Meeting Time

resolve_datetime("next Tuesday at 2pm")
→ resolved_utc, resolved_local, timezone, interpretation

Convert Across Timezones

1. get_temporal_context → user's timezone
2. convert_timezone(datetime: "2026-03-15T14:00:00-04:00", target_timezone: "Asia/Tokyo")
   → same moment in Tokyo time with DST and offset info

Calculate Duration

compute_duration(start: "2026-03-15T09:00:00-04:00", end: "2026-03-15T17:30:00-04:00")
→ total_seconds: 30600, hours: 8, minutes: 30, human_readable: "8 hours 30 minutes"

DST-Aware Adjustment

adjust_timestamp(
  datetime: "2026-03-07T23:00:00-05:00",
  adjustment: "+1d",
  timezone: "America/New_York"
) → same wall-clock time (23:00) on March 8, even though DST spring-forward occurs

Additional References

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

83.59%
按下载量换算7,012

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills