plugins/claude-ecosystem/skills/current-date/SKILL.md
Gets, checks, and verifies the current UTC date and time for unambiguous temporal reference. Use when starting tasks, verifying temporal context, ensuring date awareness before time-sensitive operations, or when incorrect date assumptions are detected.
npx skillsauth add melodic-software/claude-code-plugins current-dateInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Get the current UTC date and time to ensure correct temporal context for all operations.
This skill requires COMMAND EXECUTION, not assumption-based answers.
When this skill loads, you MUST:
Why this matters: This skill exists precisely because date assumptions are unreliable. Model training cutoffs, context issues, and stale information mean assumptions about "today" are frequently wrong. The ONLY reliable source is executing the date command and reporting actual output.
This skill provides a simple, reliable way to verify the current date and time. It addresses situations where Claude Code or subagents may have incorrect assumptions about the current date due to model training cutoffs.
Why a dedicated skill?
What this skill does NOT do:
IMPORTANT: This is an execution-only skill. Always run the command; never state dates from memory.
Use this skill when:
Get current UTC date and time:
date -u +"%Y-%m-%d %H:%M:%S UTC (%A)"
Expected output:
2025-11-09 18:31:10 UTC (Sunday)
Format explanation:
2025-11-09 - ISO 8601 date format (YYYY-MM-DD)18:31:10 - 24-hour time with seconds (UTC)UTC - Coordinated Universal Time(Sunday) - Day of weekExecution Checklist:
date -u +"%Y-%m-%d %H:%M:%S UTC (%A)"
# Then proceed with task...
date -u +"%Y-%m-%d"
# Use for "Last Verified" dates
date -u +"%Y%m%d-%H%M%S"
# Use in filenames
Load on demand based on context:
| Reference | When to Load | | --- | --- | | references/platform-alternatives.md | Windows users, PowerShell needed | | references/format-reference.md | Need alternative output formats | | references/troubleshooting.md | Errors or issues occur | | references/testing/evaluations.md | During skill testing or audit | | references/testing/model-notes.md | Multi-model testing |
Date: 2025-11-28 Model: claude-opus-4-5-20251101
development
Search Milan Jovanovic's .NET blog for Clean Architecture, DDD, CQRS, EF Core, and ASP.NET Core patterns. Use for finding applicable patterns, code examples, and architecture guidance. Invoke when working with .NET projects that could benefit from proven architectural patterns.
tools
Install and configure Data API Builder (DAB) for production SQL Server MCP access with RBAC
tools
Manage MssqlMcp servers - status, rebuild, and upstream updates
tools
Developer environment setup guides for Windows, macOS, Linux, and WSL. Use when setting up development machines, installing tools, configuring environments, or following platform-specific setup guides. Covers package management, shell/terminal, code editors, AI tooling, containerization, databases, and more.