datetime
Use the `date` command via Bash tool whenever you or the user mention time, dates, or temporal concepts. Verify current date/time before ANY temporal response, as environment context may be outdated. Parse expressions like "tomorrow", "next week", "3 days", "in 2 weeks", "next Monday at 3pm". Proactively invoke for deadlines, schedules, time-sensitive tasks, week numbers, or any date/time reference.
What this skill does
# 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:** ```bash # 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 ```bash 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 - <env> context shows incorrect dates ## How to Use Use the Bash tool with `date -d` command: **Get current date/time:** ```bash date '+%Y-%m-%d %H:%M:%S (%A)' ``` **Parse natural language:** ```bash 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) 3. **Fallback to current date**: If no alternative works: ```bash date '+%Y-%m-%d %H:%M:%S (%A)' ``` **Example error handling:** ```bash # 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`.
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.