Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计未展示

tiempotiempo 搜索

Agent Skill

tiempo 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

333

周安装

14

GitHub Stars

公开资料未说明

下载量

116
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add go-brand/tiempo --skill "tiempo"

简介

tiempo 用于发现和安装 AI 代理的技能插件,增强宿主功能多样性。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境中的技能拓展。
  • 通过 npx 命令从 go-brand/tiempo 仓库加载指定技能模块。
  • 安装命令为 npx skills add go-brand/tiempo --skill "tiempo",依赖 npm 环境。
  • 建议核实技能实际用途与资源消耗后再决定是否集成到工作流中。

SKILL.md

name
tiempo
description
Use when working with dates, times, timezones, or datetime conversions in TypeScript/JavaScript. Provides guidance on using the tiempo library for timezone-safe datetime handling with the Temporal API.

tiempo - Timezone-Safe Datetime Handling

Lightweight utility library for timezone conversions built on the Temporal API.

npm install @gobrand/tiempo

Best Practices

  • Always use explicit timezones - Never rely on implicit timezone behavior. details
  • Don't use JavaScript Date - Use tiempo instead of Date for timezone work. details
  • Store UTC, display local - Backend stores UTC, frontend converts for display. details

Conversion

FunctionDescriptionReference
toZonedTime()Convert to a timezone-aware ZonedDateTimedetails
toPlainTime()Parse a plain time or extract wall-clock time from a datetimedetails
toPlainDate()Parse a plain date or extract calendar date from a datetimedetails
toUtc()Convert to a UTC Instantdetails
toIso()Convert to an ISO 8601 stringdetails
toIso9075()Convert to ISO 9075 (SQL) format stringdetails
toDate()Convert to a JavaScript Date objectdetails

Current Time

FunctionDescriptionReference
now()Get the current date and time as a ZonedDateTimedetails
today()Get today's date as a PlainDatedetails

Formatting

FunctionDescriptionReference
format()Format a datetime using date-fns-like format tokensdetails
formatPlainDate()Format a PlainDate using date-fns-like format tokensdetails
simpleFormat()Human-friendly date/time formatting with explicit control over what to displaydetails
intlFormatDistance()Format the distance between dates as human-readable, internationalized stringsdetails

Arithmetic

FunctionDescriptionReference
addYears()Add years to a datetimedetails
addMonths()Add months to a datetimedetails
addWeeks()Add weeks to a datetimedetails
addDays()Add days to a datetime (DST-safe)details
addHours()Add hours to a datetimedetails
addMinutes()Add minutes to a datetimedetails
addSeconds()Add seconds to a datetimedetails
addMilliseconds()Add milliseconds to a datetimedetails
addMicroseconds()Add microseconds to a datetimedetails
addNanoseconds()Add nanoseconds to a datetimedetails
subYears()Subtract years from a datetimedetails
subMonths()Subtract months from a datetimedetails
subWeeks()Subtract weeks from a datetimedetails
subDays()Subtract days from a datetimedetails
subHours()Subtract hours from a datetimedetails
subMinutes()Subtract minutes from a datetimedetails
subSeconds()Subtract seconds from a datetimedetails
subMilliseconds()Subtract milliseconds from a datetimedetails
subMicroseconds()Subtract microseconds from a datetimedetails
subNanoseconds()Subtract nanoseconds from a datetimedetails

Boundaries

FunctionDescriptionReference
startOfDay()Get the first moment of the daydetails
endOfDay()Get the last moment of the daydetails
startOfWeek()Get the first moment of the week (Monday)details
endOfWeek()Get the last moment of the week (Sunday)details
startOfMonth()Get the first moment of the monthdetails
endOfMonth()Get the last moment of the monthdetails
startOfYear()Get the first moment of the yeardetails
endOfYear()Get the last moment of the yeardetails

Comparison

FunctionDescriptionReference
isBefore()Check if one datetime is before anotherdetails
isAfter()Check if one datetime is after anotherdetails
isWithinInterval()Check if a datetime falls within an intervaldetails
isFuture()Check if a datetime is in the futuredetails
isPast()Check if a datetime is in the pastdetails
isSameDay()Check if two datetimes are on the same calendar daydetails
isSameWeek()Check if two datetimes are in the same ISO weekdetails
isSameMonth()Check if two datetimes are in the same calendar monthdetails
isSameYear()Check if two datetimes are in the same calendar yeardetails
isSameHour()Check if two datetimes are in the same hourdetails
isSameMinute()Check if two datetimes are in the same minutedetails
isSameSecond()Check if two datetimes are in the same seconddetails
isSameMillisecond()Check if two datetimes are in the same milliseconddetails
isSameMicrosecond()Check if two datetimes are in the same microseconddetails
isSameNanosecond()Check if two datetimes are in the same nanoseconddetails
isPlainDateBefore()Check if a PlainDate is before another PlainDatedetails
isPlainDateAfter()Check if a PlainDate is after another PlainDatedetails
isPlainDateEqual()Check if two PlainDates are equaldetails
isPlainTimeBefore()Check if a PlainTime is before another PlainTimedetails
isPlainTimeAfter()Check if a PlainTime is after another PlainTimedetails
isPlainTimeEqual()Check if two PlainTimes are equaldetails

Difference

FunctionDescriptionReference
differenceInYears()Calculate the difference between two dates in yearsdetails
differenceInMonths()Calculate the difference between two dates in monthsdetails
differenceInWeeks()Calculate the difference between two dates in weeksdetails
differenceInDays()Calculate the difference between two dates in daysdetails
differenceInHours()Calculate the difference between two dates in hoursdetails
differenceInMinutes()Calculate the difference between two dates in minutesdetails
differenceInSeconds()Calculate the difference between two dates in secondsdetails
differenceInMilliseconds()Calculate the difference between two datetimes in millisecondsdetails
differenceInMicroseconds()Calculate the difference between two datetimes in microsecondsdetails
differenceInNanoseconds()Calculate the difference between two datetimes in nanosecondsdetails

Intervals

FunctionDescriptionReference
eachYearOfInterval()Get all years in an interval as ZonedDateTime arraydetails
eachMonthOfInterval()Get all months in an interval as ZonedDateTime arraydetails
eachWeekOfInterval()Get all weeks (ISO Monday start) in an interval as ZonedDateTime arraydetails
eachDayOfInterval()Get all days in an interval as ZonedDateTime arraydetails
eachHourOfInterval()Get all hours in an interval as ZonedDateTime arraydetails
eachMinuteOfInterval()Get all minutes in an interval as ZonedDateTime arraydetails

Utilities

FunctionDescriptionReference
browserTimezone()Get the browser/device timezonedetails
roundToNearestHour()Round a datetime to the nearest hour boundarydetails
roundToNearestMinute()Round a datetime to the nearest minute boundarydetails
roundToNearestSecond()Round a datetime to the nearest second boundarydetails

Types

import type { Timezone, IANATimezone } from '@gobrand/tiempo';

// Timezone: accepts IANA timezones + "UTC"
const tz: Timezone = 'America/New_York';  // Autocomplete for 400+ timezones

// IANATimezone: strictly IANA identifiers (excludes "UTC")
const iana: IANATimezone = 'Europe/London';

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

OpenCode

26.77%
按下载量换算31

Codex

23.41%
按下载量换算27

Claude Code

19.45%
按下载量换算23

Antigravity

13.05%
按下载量换算15

Gemini CLI

8.16%
按下载量换算9

windsurf

3.82%
按下载量换算4

安全审计

暂无安全审计结果可展示。

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills