一键导入
utc-datetime
Return the current UTC datetime. Use this skill whenever you need to populate a timestamp field such as lastUpdated in agent tracking.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Return the current UTC datetime. Use this skill whenever you need to populate a timestamp field such as lastUpdated in agent tracking.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Manage NuGet packages in .NET projects/solutions. Use this skill when adding, removing, or updating NuGet package versions. It enforces using `dotnet` CLI for package management and provides strict procedures for direct file edits only when updating versions.
Apply the Kinetic Ionization design system when building or restyling Angular components. Use when: creating new UI components, redesigning existing views, writing SCSS styles, configuring Angular Material themes, choosing colors, typography, elevation, or layout patterns. Keywords: design, style, CSS, SCSS, theme, color, typography, component, UI, layout, button, card, input, modal.
基于 SOC 职业分类
| name | utc-datetime |
| description | Return the current UTC datetime. Use this skill whenever you need to populate a timestamp field such as lastUpdated in agent tracking. |
This skill returns the current UTC date and time in a consistent format for use in agent tracking.
Return the current UTC datetime as an ISO 8601 string in the format:
yyyy-MM-ddTHH:mm:ssZ
Example: 2026-02-14T09:30:00Z
Run the following PowerShell command to get the current UTC datetime:
(Get-Date).ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssZ")
Whenever a field requires a UTC timestamp (such as lastUpdated in implementation plan frontmatter), invoke this skill to obtain the current value rather than hard-coding or estimating a date.