Skylv Repo Cleaner

PassAudited by ClawScan on May 3, 2026.

Overview

This is a simple Git branch-cleanup instruction skill that matches its description and asks for confirmation before deletion, but users should review branch deletions carefully.

This skill appears safe to install as an instruction-only Git cleanup helper. Before using it, make sure you are in the intended repository, inspect the list of branches it proposes to delete, and be especially cautious with force deletion or deleting branches from the remote origin.

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.

What this means

If approved incorrectly, the user could remove local work or shared remote branch references.

Why it was flagged

These commands can delete local branches, force-delete branches, or delete remote branches. This is central to the skill's purpose and is balanced by its separate instruction to show the user the deletion plan and ask for confirmation.

Skill content
Commands: git branch -d (safe) or git branch -D (force)
Remote: git push origin --delete branch-name
Recommendation

Review the proposed branch list before approving deletion, prefer safe deletion with git branch -d, and use force or remote deletion only when the branch is confirmed merged or otherwise recoverable.