git
PassAudited by ClawScan on May 1, 2026.
Overview
This is a simple Git command reference with no code to install, but some listed commands can permanently change or delete repository work or push changes online.
This skill appears safe as a Git command reference. Use extra care with commands such as reset --hard, clean -fd, branch -D, rebase, and push; ask the agent to show git status and git diff first and to get explicit confirmation before deleting, rewriting, or publishing repository changes.
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.
A mistaken command could lose local work, rewrite repository state, or publish changes to a remote repository.
The skill documents Git commands that can discard changes, delete untracked files, or push changes to a remote repository. These are disclosed and central to the stated Git purpose, but they are high-impact if used carelessly.
git reset --hard HEAD~1 # 完全删除更改 ... git clean -fd # 删除未跟踪文件和目录 ... git push origin <branch>
Before running destructive or remote-changing commands, confirm the current branch, status, diff, remote, and whether a backup or dry run is appropriate.
