Paste Tool
Analysis
This appears to be a small local file-merging utility with no credentials, network use, or install script, but its documented options do not match the provided code and its source provenance is minimal.
Findings (3)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
files = [open(f).readlines() for f in sys.argv[1:]] if sys.argv[1:] else [sys.stdin.readlines()]
The script reads every command-line path provided, or stdin if no paths are provided. This is purpose-aligned for a file-merging utility, but users should understand that any file path passed to it will be read and printed into the agent's output.
Source: unknown; Homepage: none
The skill has minimal provenance information. There is no install spec or external dependency shown, which limits supply-chain exposure, but the origin is not independently documented in the provided metadata.
print('\t'.join(row))The implementation hardcodes tab-delimited parallel output and contains no handling for the -d custom delimiter or -s serial mode documented in SKILL.md. This is a functionality/trust mismatch rather than evidence of malicious behavior.
