git-commit-c797a4 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited git-commit-c797a4 (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Create a commit with a conventional commit message based on staged changes. Automatically stages all changes and analyzes the diff to generate an appropriate commit message.
Execute these steps in order.
Check for changes to commit:
git status --porcelainRun:
git add .Report: "Staged all changes."
View the staged diff to understand what changed:
git diff --cached --statgit diff --cachedAnalyze the diff to determine:
Build a conventional commit message following this format:
<type>(<optional-scope>): <description>
[optional body]Types:
feat - New featurefix - Bug fixdocs - Documentation onlystyle - Formatting, no code changerefactor - Code restructuring without behavior changetest - Adding or updating testschore - Maintenance tasksbuild - Build system or dependenciesci - CI configurationperf - Performance improvementRules:
Run:
git commit -m "$(cat <<'EOF'
<commit message here>
EOF
)"On success:
On pre-commit hook failure:
If the commit fails:
git reset HEAD to unstage without losing changes| Capability | Purpose |
|---|---|
| Shell execution | Run git commands (git status, git add, git diff, git commit, git reset) |
| User interaction | Display commit results, report errors, provide recovery instructions |
git init or cloned)cat <<'EOF') assumes a POSIX-compatible shell (bash, zsh, sh)~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.