Tr Tool
PassAudited by ClawScan on May 5, 2026.
Overview
This is a simple local text-translation utility with no network, credential, or persistence behavior, though its documentation appears to overstate the included script's supported options.
This skill appears safe for simple local character substitution, but do not rely on the documented delete or squeeze options unless you verify they are implemented.
Findings (1)
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.
