content-repurpose-studio

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

Overview

No suspicious behavior was found; the skill is a content-drafting helper with a small local Python script that reads a chosen source file and writes a draft JSON output.

This skill appears safe for drafting and repurposing content. Before using the helper script, confirm the input file is one you intend to process and pick an output path that will not overwrite anything important.

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

If run with the wrong paths, the script could read unintended content or overwrite an existing output file.

Why it was flagged

The local helper accepts an input file path and output path, reads the source text, and writes a JSON draft. This is purpose-aligned, but users should be aware it can create or overwrite the chosen output file.

Skill content
ap.add_argument("source_txt") ... ap.add_argument("--out", default="channel_pack.json") ... src = open(args.source_txt, "r", encoding="utf-8").read().strip() ... json.dump(payload, open(args.out, "w", encoding="utf-8"), ensure_ascii=False, indent=2)
Recommendation

Run the helper only with files you intend to process, choose a safe output filename, and review drafts before publishing them.