Tee 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

Using the tool on an existing file can replace that file's contents.

Why it was flagged

The script writes stdin to a local file using overwrite mode. This is expected for a tee-like utility, but users should notice that existing files can be overwritten and that a default 'out.txt' is used if no argument is supplied.

Skill content
with open(sys.argv[1] if len(sys.argv)>1 else 'out.txt','w') as f: f.write(text)
Recommendation

Use explicit, intended file paths and keep backups or use a known-safe tee implementation when preserving existing contents matters.

What this means

A user may expect append or multiple-file behavior that the included script does not provide.

Why it was flagged

The documentation advertises append and multi-file tee behavior, while the included script does not parse options and writes only one target in overwrite mode. This looks like an implementation/documentation mismatch rather than hidden malicious behavior.

Skill content
- `-a`: Append to files instead of overwriting
Recommendation

Do not rely on the documented options unless the installed command is separately verified to support them.