Tr Tool
PassAudited by VirusTotal on May 5, 2026.
Overview
Type: OpenClaw Skill Name: tr-tool Version: 1.0.0 The tr-tool skill is a straightforward implementation of a character translation utility, similar to the Unix 'tr' command. The core logic in scripts/tr.py uses standard Python string translation methods (str.maketrans) to process input from stdin, and the SKILL.md documentation accurately reflects this functionality without any suspicious instructions or prompt injection attempts.
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.
Some documented examples may fail or behave differently than expected.
The implementation only supports two positional translation arguments, while SKILL.md advertises deletion and squeezing options such as -d and -s. This is a functionality/trust mismatch rather than evidence of malicious behavior.
if len(sys.argv)<3: print("Usage: tr.py from to"); sys.exit(1)
trans = str.maketrans(sys.argv[1], sys.argv[2])Treat this as a basic substitution tool unless the implementation is updated to support the documented deletion and squeezing options.
