git-commit-201aeb — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited git-commit-201aeb (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 --porcelainStage all changes including untracked files:
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:
Create the commit using a heredoc for proper formatting:
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 changesWhat this component does: Creates git commits with conventional commit messages by analyzing staged changes.
Capabilities needed:
Adaptation guidance:
Configurable parameters: None
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.