Git Cli 1.0.0
PassAudited by VirusTotal on May 11, 2026.
Overview
Type: OpenClaw Skill Name: git-cli-1-0-0 Version: 1.0.0 The skill bundle is a standard helper for Git CLI operations, providing common commands for repository management, branching, and synchronization. It includes explicit safety guidelines in SKILL.md to avoid destructive commands like 'git reset --hard' and contains no evidence of malicious intent, data exfiltration, or prompt injection.
Findings (0)
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.
Running these commands could commit unintended files or push code to a shared remote repository.
The skill documents Git commands that can stage many files and publish commits to a remote repository. This is expected for the stated purpose, but users should review changes before running these commands.
Stage all tracked and untracked changes: `git add .` ... For subsequent pushes on the same branch: `git push`
Use `git status` and `git diff` first, verify the branch and remote, and avoid `git add .` or `git push` unless the intended changes are clear.
The skill may not work unless Git is already installed, but there is no evidence of hidden installation or execution behavior.
The skill depends on a local Git binary, while the registry requirements list no required binaries. Because there is no install script or bundled code, this is only a dependency declaration gap.
- Git is installed and available on the PATH (for example `git --version` succeeds).
Confirm Git is installed from a trusted source before using the command examples.
