AI生成

Security checks across static analysis, malware telemetry, and agentic risk

Overview

The provided artifacts match an ad-creative generation/task-management skill and show no evidence of malicious behavior, with only low-risk notes around task data visibility and request limits.

This skill appears safe to install based on the provided artifacts. Before use, avoid putting confidential information into generation prompts, and consider adding limits and scoping if it will be used by multiple users or for high-volume generation.

Static analysis

No static analysis findings were reported for this release.

VirusTotal

VirusTotal findings are pending for this skill version.

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.

What this means

Very large generation requests could consume extra local resources, and if later connected to real model providers, could create cost or quota impact.

Why it was flagged

The command exposes a user-controlled generation count. The visible implementation defaults to 4 and only creates mock in-memory results, but it does not show an explicit maximum or approval threshold for large requests.

Skill content
count: { type: "number", help: "生成数量 (默认4)", default: 4 }
Recommendation

Add validation such as a maximum count, clear user confirmation for large batches, and cancellation checks before completing queued work.

What this means

Prompts and generation parameters may remain visible within the running skill instance through task status or listing commands.

Why it was flagged

The skill stores task prompts, params, and results in memory and provides status/list access to task data. This is aligned with task management, but prompts may contain private campaign details.

Skill content
private tasks: Map<string, GenerationTask> = new Map();
Recommendation

Do not include secrets in prompts; implement per-user or per-session task scoping, expiration, and redaction for sensitive prompt fields if the skill is used in shared environments.