outreach-sequence-crafter
PassAudited by ClawScan on May 1, 2026.
Overview
This skill appears to be a scoped drafting helper for outreach sequences, with only a disclosed local Python helper that can write a JSON draft file.
This looks safe to install for drafting outreach content. Before running the optional script, confirm the output path and review generated outreach for accuracy, consent, and anti-spam/legal compliance before using it externally.
Findings (1)
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.
If the helper script is run, it can create or overwrite the specified outreach sequence JSON file.
The bundled helper is local Python code that writes a JSON output file to the user-selected --out path. This is disclosed and aligned with the skill's drafting purpose, but users should recognize that running it performs a local file write.
ap.add_argument("--out", default="outreach_sequence.json") ... json.dump(seq, open(args.out, "w", encoding="utf-8"), ensure_ascii=False, indent=2)Run the helper only when you want a local file generated, and choose an output path that will not overwrite something important.
