Tee Tool

PassAudited by ClawScan on May 5, 2026.

Overview

This is a simple local tee-style file writer with no credential or network behavior, but its included script does not fully match the documented options.

This skill appears benign for saving piped output locally. Before relying on it, verify how it is invoked and be careful with existing files, because the included script overwrites one file and does not implement the documented append or multiple-file options.

Findings (2)

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.