Release Manager

ReviewAudited by ClawScan on May 1, 2026.

Overview

The skill appears to be a purpose-aligned release-management helper, but its release and rollback command examples should be reviewed before anyone runs them.

Use this skill in repositories you control, review its generated changelogs and version recommendations, and require explicit approval before pushing tags, creating releases, running rollback steps, clearing caches, or applying database migrations.

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

The skill may help process local repository history and generate release artifacts such as changelogs or reports.

Why it was flagged

The skill documents user-run local commands that read repository history and execute included Python scripts. This is central to the release-management purpose and is not hidden, but it is still local tool execution over project data.

Skill content
git log --oneline --since="1 month ago" | python changelog_generator.py
Recommendation

Run the scripts only in intended repositories and review generated outputs before committing, publishing, or using them in automation.

What this means

Blindly following generated rollback steps could disrupt a live service or change production data state.

Why it was flagged

The sample rollback plan contains commands that could affect databases, caches, or deployed services if executed. The artifacts present them as planned rollback steps with risk levels, not as automatically executed behavior.

Skill content
"command": "python manage.py migrate app 0042" ... "command": "redis-cli FLUSHALL"
Recommendation

Treat rollback commands as templates requiring explicit human approval, environment-specific validation, backups, and dry-run or staging verification where possible.

What this means

Users have less upstream context for who maintains the scripts and where updates come from.

Why it was flagged

The registry metadata does not provide a source repository or homepage, which limits provenance context. The artifacts do not show a remote installer or external dependency chain.

Skill content
Source: unknown; Homepage: none
Recommendation

Review the included files before use and prefer a trusted, version-controlled source if adopting the scripts into release automation.