weekly-ops-review
PassAudited by ClawScan on May 1, 2026.
Overview
This looks like a straightforward weekly review drafting skill, with only minor notes about version/provenance consistency and an optional local script that writes a JSON file.
This skill appears safe for normal use. Before installing, note the minor version mismatch and run the optional Python helper only when you intend to create or overwrite its output file. As with any review assistant, provide only the notes, metrics, and calendar/task details needed for the review.
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.
Users may have slightly less clarity about exactly which package version they are installing, but the artifacts do not show hidden dependencies or unsafe installation behavior.
The supplied SKILL.md frontmatter declares version 1.1.0 while the registry metadata says 1.0.0 and no homepage/source is provided, so version/provenance tracking is not perfectly coherent. The included files are still simple and auditable.
Version: 1.0.0; Source: unknown; Homepage: none
Confirm the intended version with the publisher or registry entry if provenance matters for your environment.
Running the helper may create or replace a local JSON file, most likely weekly_review.json unless another path is provided.
If invoked, the bundled Python helper writes a JSON review skeleton to the chosen output path. This is purpose-aligned and disclosed, but the write mode can overwrite an existing file at that path.
ap.add_argument("--out", default="weekly_review.json") ... json.dump(payload, open(args.out, "w", encoding="utf-8"), ensure_ascii=False, indent=2)Use an explicit output path and check for an existing file before running the helper if you want to avoid overwriting anything.
