smithery/neversight

datetime-info

Shows current date and time in multiple formats. Use when you need timestamps, day of week, or formatted dates.

Installation

$ npx skills add smithery/neversight --skill datetime-info

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/neversight · top by installs.

npx skills add smithery/neversight

Browse all from smithery/neversight

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 940 B
  • docs SUMMARY.md 132 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Datetime Info

Displays current date and time in various formats.

Usage

python ~/.copilot/skills/datetime-info/datetime_info.py [options]

Options

Option Description Default
--format Output format: iso, timestamp, human, all all
--timezone Timezone (e.g., UTC, America/New_York) local

Output

JSON with:

  • iso: ISO 8601 format (2024-01-15T10:30:00)
  • timestamp: Unix timestamp
  • human: Human readable (Monday, January 15, 2024)
  • dayofweek: Day name
  • time: Current time HH:MM:SS

Examples

Get All Formats

python ~/.copilot/skills/datetime-info/datetime_info.py

ISO Format Only

python ~/.copilot/skills/datetime-info/datetime_info.py --format iso