commit — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited commit (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 clean, minimal git commits. No fluff, no co-author lines.
git status and git diff (staged + unstaged) to understand what changed. Also run git log --oneline -5 to match the repo's existing message style.head, tail, line limits, or any other form of partial reading. A truncated diff means you're guessing about changes you haven't seen — and that leads to wrong or vague commit messages. If the diff is large, read all of it before writing the message. The quality of the commit message depends entirely on seeing the complete picture.git add -A or git add . to prevent accidentally staging secrets or junk.Use a single-line summary in conventional commit style (fix:, feat:, refactor:, docs:, chore:, test:), lowercase, no period. Keep it under 72 characters.
If multiple distinct changes are staged, use a bulleted list body:
feat: add volume slider and notification history
- wire up PipeWire volume control with mute toggle
- add notification history dropdown in bar capsuleThe summary line should capture the overall theme; bullets cover the specifics. Skip the body if one line says it all.
.env, credentials, tokens). Warn if the user asks to. git commit -m "$(cat <<'EOF'
feat: the summary line
- detail one
- detail two
EOF
)"~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.