Rev Tool
PassAudited by ClawScan on May 1, 2026.
Overview
This is a simple local text-reversal skill with no sensitive permissions, network access, credentials, or persistence.
This appears safe for simple local text reversal. Be aware that the included script reverses the whole input stream rather than each line separately, so verify behavior before using it for structured or multi-line data.
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.
Output may not match expectations for multi-line input, because line order and newline placement can be reversed too.
This reverses the entire input stream, while SKILL.md says each line is independently reversed; this is a functionality mismatch, not evidence of malicious behavior.
print(''.join(reversed(sys.stdin.read())))If line-by-line reversal matters, test the skill on sample multi-line input before relying on it.
