Tr Tool

AdvisoryAudited by Static analysis on May 5, 2026.

Overview

No suspicious patterns detected.

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

Some documented examples may fail or behave differently than expected.

Why it was flagged

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.

Skill content
if len(sys.argv)<3: print("Usage: tr.py from to"); sys.exit(1)
trans = str.maketrans(sys.argv[1], sys.argv[2])
Recommendation

Treat this as a basic substitution tool unless the implementation is updated to support the documented deletion and squeezing options.