flashformat

Security checks across malware telemetry and agentic risk

Overview

This skill coherently provides offline local format-conversion scripts; it has no evident credential use, network exfiltration, persistence, or deceptive behavior.

This appears safe to install for offline format conversion. Use a trusted Python environment, consider pinning PyYAML for reproducible installs, and only run the converters on files you intend to read or overwrite.

VirusTotal

64/64 vendors flagged this skill as clean.

View on VirusTotal

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.

#
ASI04: Agentic Supply Chain Vulnerabilities
Low
What this means

Installing live dependencies can expose the user to changes in the package or package index over time.

Why it was flagged

The skill relies on an external Python package that is installed manually and is not pinned to a specific version; this is expected for YAML conversion but is still a supply-chain consideration.

Skill content
python -m pip install PyYAML
Recommendation

Install in a virtual environment and consider pinning PyYAML to a trusted version if using this in CI or sensitive repositories.

#
ASI02: Tool Misuse and Exploitation
Info
What this means

If pointed at the wrong file, the skill could read unintended local content or overwrite an existing output file.

Why it was flagged

The scripts can read from and write to file paths supplied on the command line. This is appropriate for local converters, but the paths are not restricted to a particular directory.

Skill content
Path(input_file).read_text(encoding="utf-8") ... Path(output_file).write_text(content, encoding="utf-8")
Recommendation

Use explicit, intended input and output paths, avoid sensitive files, and keep backups when writing converted output.