Transform 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

The agent or user may try the wrong command options or misunderstand what the tool actually does.

Why it was flagged

The actual script requires format-conversion flags, while SKILL.md documents different options such as --upper, --lower, --trim, and --reverse. This is a documentation mismatch, not evidence of malicious behavior.

Skill content
parser.add_argument('--from', '-f', dest='from_format', required=True, ...); parser.add_argument('--to', '-t', dest='to_format', required=True, ...)
Recommendation

Verify the script's real command-line interface before relying on the SKILL.md examples, or ask the publisher to align the documentation and implementation.

What this means

The skill may not run as documented unless a separate wrapper or manual invocation is provided.

Why it was flagged

The skill references a transform-tool CLI, but the supplied install information says there is no install spec and the manifest only shows scripts/transform.py. This leaves the command wrapper or invocation path unclear.

Skill content
transform-tool [options] <file>
Recommendation

Use the included script directly only after reviewing it, or confirm how the transform-tool command is installed or mapped.