Skill Market Analyzer

Security checks across malware telemetry and agentic risk

Overview

This appears to be a simple local report generator with no credential or network access, but users should know it writes to the file path it is given and its report content is mostly canned.

This skill looks safe to install from a security perspective, but use it as a lightweight local report template rather than authoritative marketplace research, and choose the output filename carefully so it does not overwrite something important.

VirusTotal

66/66 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.

#
ASI09: Human-Agent Trust Exploitation
Low
What this means

A user could make planning decisions based on a canned report rather than actual marketplace data.

Why it was flagged

The report content is hard-coded, while the skill is described as analyzing marketplace trends and gaps. This is not evidence of malicious behavior, but users should not over-trust the generated report as live market research.

Skill content
echo "1. Productivity" >> "$OUTPUT"
echo "2. E-commerce" >> "$OUTPUT"
echo "3. Utilities" >> "$OUTPUT"
Recommendation

Treat generated reports as a template or starting point, and verify any market conclusions against real marketplace data.

#
ASI02: Tool Misuse and Exploitation
Low
What this means

If invoked with the wrong output path, the script could overwrite an existing local file with the generated report.

Why it was flagged

The second argument controls the output path, and the script uses shell redirection with `>` which overwrites the target file. This is expected for report generation, but it is not limited to a specific reports directory.

Skill content
OUTPUT="${2:-report.md}"

echo "# Skill Market Analysis Report" > "$OUTPUT"
Recommendation

Use a dedicated report filename or directory, and avoid passing paths to important existing files; the skill author could add overwrite checks or restrict output paths.