fix — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited fix (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.
Fix all lint, format, and type errors in the current changes.
** whose paths:` glob matches the files you're about to touch — they may carry style/typing rules the linter doesn't enforce.git diff --name-only {{BASE_BRANCH}}...HEAD (work committed on this branch)git diff --name-only (unstaged) and git diff --name-only --cached (staged)Pass these paths to every command below so the tools judge only what this branch changed — never the whole repo. Pre-existing violations in untouched files are not yours to fix here. If the list is empty, there's nothing to fix; say so and stop. (If {{BASE_BRANCH}}...HEAD errors because the base branch isn't present locally, fall back to the uncommitted diff alone.)
Append the changed files to each command (e.g. ruff check <files>) so it stays scoped to the branch's change.
ruff format, ruff check, mypy (or pyright)prettier --write, eslint --fix, tsc --noEmit (tsc checks the whole project — read only the changed files' errors)gofmt -w / goimports -w, go vet, staticcheckcargo fmt, cargo clippy --fix, cargo check (cargo works per-crate — limit fixes to the changed files)If none of these are configured (no pyproject.toml/package.json/go.mod/Cargo.toml entry, no devDependency installed), report that the repo has no configured lint/format/type-check toolchain and stop — don't pick one and force it on the project.
Any.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.