sop-factory
PassAudited by ClawScan on May 1, 2026.
Overview
This skill appears benign: it helps draft SOP documents and includes only a small local Python helper that writes an outline file, with no evidence of credentials, networking, or hidden behavior.
This skill is reasonable to install for SOP drafting. Before use, note the limited source metadata and run the helper only with an output path you are comfortable creating or overwriting.
Findings (2)
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.
You have less external context about the maintainer, project history, or update source.
The registry metadata does not provide an upstream source or homepage, so provenance is limited. The included files are local and auditable, so this is a traceability note rather than suspicious behavior.
Source: unknown; Homepage: none
Install only from a registry or publisher you trust, and review included files before updating.
If the helper is run with an existing file path, that file may be overwritten with the generated outline JSON.
The helper script writes an SOP outline JSON file to a user-selected path. This is purpose-aligned, but opening the path with write mode can replace an existing file at that location.
ap.add_argument("--out", default="sop_outline.json") ... json.dump(payload, open(args.out, "w", encoding="utf-8"), ensure_ascii=False, indent=2)Use a new or clearly intended output path, and review before overwriting important files.
