Text Diff
Security checks across malware telemetry and agentic risk
Overview
This is a straightforward local text-diff tool; the main thing to notice is that it reads the files you point it at and can write the diff to an output file.
This skill appears safe for normal local text-file comparison. Before installing or using it, remember that diff output can reveal file contents, and the `-o` option writes to the path you provide.
VirusTotal
65/65 vendors flagged this skill as clean.
Risk analysis
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.
If the tool is run on sensitive files, their differences may be shown in the agent conversation or terminal. If an unintended output path is used, an existing file could be replaced.
The script reads the two file paths provided at invocation and can write the generated diff to a provided destination path. This is expected for a diff tool, but it means file contents may be displayed and an output file may be created or overwritten.
with open(path, 'r', encoding='utf-8') as f: return f.readlines(); ... Path(destination).write_text(content, encoding='utf-8')
Use the tool only with files you intend to compare, and double-check any `-o` output path before saving results.
