Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

datetimedatetime 命令行

Agent Skill

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

总安装

1,623

周安装

69

GitHub Stars

1

下载量

569
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/cadrianmae/claude-marketplace --skill datetime

简介

用于解析自然语言时间表达式并通过 GNU date 命令处理。

  • 支持当前时间获取、相对时间计算和时区转换操作。
  • 适用于 Claude Code 环境中需要精确时间处理的场景。
  • 禁止调用 /datetime:* 斜杠命令,应直接使用 Bash 工具执行。
  • 注意:依赖 Linux 原生 date 命令,跨平台兼容性有限。

SKILL.md

DateTime Natural Language Parser

Parse natural language date and time expressions using GNU date command (native Linux utility).

IMPORTANT: For Claude Code

DO NOT invoke slash commands (/datetime:parse, /datetime:now, /datetime:calc) - those are for users only.

Instead, use the date command directly via the Bash tool:

# Get current date/time
date '+%Y-%m-%d %H:%M:%S (%A)'

# Parse natural language
date -d "tomorrow" '+%Y-%m-%d %H:%M:%S (%A)'
date -d "next monday at 9am" '+%Y-%m-%d %H:%M:%S (%A)'
date -d "3 days" '+%Y-%m-%d %H:%M:%S (%A)'

This skill provides the command patterns and when to use them. The slash commands are for users to invoke manually.

Quick Example

date -d "next Friday" '+%Y-%m-%d %H:%M:%S (%A)'
# 2026-02-06 00:00:00 (Friday)

When to Use This Skill

Automatically invoke when:

  • User mentions temporal expressions: "tomorrow", "next week", "in 3 days"
  • Need to verify current date/time
  • User references deadlines or time-sensitive tasks
  • context shows incorrect dates

How to Use

Use the Bash tool with date -d command:

Get current date/time:

date '+%Y-%m-%d %H:%M:%S (%A)'

Parse natural language:

date -d "tomorrow" '+%Y-%m-%d %H:%M:%S (%A)'
date -d "next wednesday" '+%Y-%m-%d %H:%M:%S (%A)'
date -d "3 days" '+%Y-%m-%d %H:%M:%S (%A)'
date -d "next monday 9am" '+%Y-%m-%d %H:%M:%S (%A)'

Important: The date command doesn't understand "in" keyword. When user says "in 3 days", use "3 days" instead.

Output Format

Returns single line: YYYY-MM-DD HH:MM:SS (DayName)

Example: 2024-10-29 14:23:45 (Tuesday)

Supported Expressions

  • Relative: "today", "tomorrow", "yesterday"
  • Named days: "next monday", "this wednesday", "last friday"
  • Offsets: "3 days", "2 weeks", "5 months ago"
  • Complex: "tomorrow 3pm", "next monday at 9am"
  • Past: "3 days ago", "last week"

Error Handling

If date -d fails with an invalid expression:

  1. Recognize the failure: If the command returns an error, inform the user the expression couldn't be parsed
  2. Try alternative approaches: Check references/reference.md for:

- Date arithmetic examples (if user wants relative calculations) - Complex expression syntax (if user wants compound dates) - Unix timestamp calculations (if user wants day differences)

  1. Fallback to current date: If no alternative works: date '+%Y-%m-%d %H:%M:%S (%A)'

Example error handling:

# Try parsing
date -d "user expression" '+%Y-%m-%d %H:%M:%S (%A)' 2>&1
# If error message appears, tell user and suggest checking references/reference.md for advanced patterns

Advanced Usage

For relative calculations, week numbers, and complex date arithmetic, see references/reference.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.96%
按下载量换算188

Claude

29.72%
按下载量换算169

Cursor

18.18%
按下载量换算103

Gemini CLI

9.36%
按下载量换算53

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills