Time Tool

PassAudited by VirusTotal on May 5, 2026.

Overview

Type: OpenClaw Skill Name: time-tool Version: 1.0.0 The 'time-tool' skill is a straightforward utility for measuring command execution time. The implementation in scripts/time.py uses subprocess.run to execute user-provided commands and calculate elapsed time, which aligns perfectly with the documentation in SKILL.md and lacks any indicators of malicious intent or suspicious behavior.

Findings (0)

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.

What this means

If the user or agent times a destructive or sensitive command, that command's effects will still occur.

Why it was flagged

The tool executes the command and arguments supplied to it. This is purpose-aligned for a command timer, but it means any supplied command will actually run on the local machine.

Skill content
subprocess.run(sys.argv[1:])
Recommendation

Use this only with commands you intend to run; review the command before benchmarking it.