Ad Copywriter

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a local ad-copy generator, with minor cautions about unverifiable advertising claims and a helper script that can store local command history.

This skill is reasonable for local ad-copy drafting. Before installing or using it, be aware that it runs local scripts, verify any generated advertising claims before publishing, and avoid entering sensitive campaign information into the helper script unless you are comfortable with local history logging.

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.

What this means

Using the skill means running local script code, not just reading static prompts.

Why it was flagged

The advertised command runs a bundled shell script that executes embedded Python locally. This matches the skill's stated CLI-based copy-generation purpose and shows no hidden external execution in the provided evidence.

Skill content
python3 - "$CMD" "$@" << 'PYTHON_EOF'
Recommendation

Run it only from a trusted copy of the skill and review generated output before use.

What this means

If copied directly into real ads, the output could contain unsupported claims such as fake review rates, sales counts, endorsements, or scarcity.

Why it was flagged

The templates can generate strong marketing claims, urgency, and social-proof language without checking whether those claims are true for the user's product.

Skill content
已有10万+人验证,好评率99% ... 制造紧迫感(限时、限量)
Recommendation

Verify all claims, discounts, endorsements, statistics, and urgency statements before publishing ad copy.

What this means

Product names, campaign topics, or other prompt details entered into this helper script may remain on disk locally.

Why it was flagged

This unadvertised helper script creates a local data directory and appends command topics or arguments to a persistent history file when its commands are used.

Skill content
DATA_DIR="${AD_COPYWRITER_DIR:-${XDG_DATA_HOME:-$HOME/.local/share}/ad-copywriter}" ... _log() { echo "$(date '+%m-%d %H:%M') $1: $2" >> "$DATA_DIR/history.log"; }
Recommendation

Avoid entering confidential campaign details into the helper script unless local logging is acceptable; clear the history file or set AD_COPYWRITER_DIR to a controlled location if needed.