Datetime Tool
PassAudited by ClawScan on May 16, 2026.
Overview
This appears to be a local date/time utility with no evidence of credential access, network use, persistence, or destructive behavior, though its packaging and precision claims should be checked.
This skill looks safe for ordinary local date/time formatting and conversion. Before installing, confirm how the datetime-tool command maps to the bundled Python scripts, and avoid relying on its month/year calculations for critical scheduling or accounting without independent verification.
Findings (2)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Users may need to verify how the command is installed and whether the included scripts are the exact code being run.
The package includes executable scripts and documentation for a command, but the registry does not provide an install spec or source homepage. This is not suspicious by itself, but it lowers packaging/provenance clarity.
Source: unknown; Homepage: none; Install specifications: No install spec — this is an instruction-only skill. Code file presence: 2 code file(s): scripts/datetool.py; scripts/dt.py
Review the bundled scripts and command entrypoint before installing or invoking the skill, especially because no install mechanism or source repository is declared.
For scheduling, accounting, or other high-stakes date calculations, approximate month/year handling could produce incorrect results.
The implementation uses approximate month and year arithmetic, while the skill description presents the tool as comprehensive and suitable for calendar calculations. This is a reliability/trust note, not evidence of malicious behavior.
elif unit_lower in ['month', 'months']:
# Approximate month as 30 days
delta = datetime.timedelta(days=amount * 30)
elif unit_lower in ['year', 'years']:
# Approximate year as 365 daysUse this tool for simple local date/time tasks, but verify outputs for critical calendar math or ask the publisher to document approximation limits clearly.
