git-pushing-fast — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited git-pushing-fast (Agent Skill) and scored it 96/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 1 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 1 flagged
A bulleted imperative like {match} tells the agent to never reveal, disclose, or mention something to the user. Used adversarially it can instruct the agent to hide its tool calls or lie about what it did — stripping the transparency a user relies on to trust the agent.
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.
Commit and push the current repository's local changes on the current branch with a fast, safe single-branch workflow.
The default output is one focused Conventional Commit plus a push to the tracked remote branch. For non-trivial changes, write a segmented commit body so reviewers can quickly see what changed by topic.
This workflow handles ordinary single-branch handoff requests such as saving current work to the remote, without branch merging, history rewriting, or PR creation.
Use this skill when the user asks to:
Do not use this skill for:
git reset --hard or git checkout -- <file>Follow this workflow in order. Stop and report the blocker instead of guessing when the target repository, branch, or push destination is unclear.
git status --short, git branch --show-current, and git remote -v.git rev-parse --abbrev-ref --symbolic-full-name @{u} when possible.git diff --cached --stat; if nothing is staged, review git diff --stat.git add -A.git status --short and verify the intended files are staged.type(scope): concise summary in the repository's existing commit language.fix, feat, docs, refactor, test, chore, or ci.Tests: or localized equivalent section when tests, validators, hooks, or manual verification ran.Example segmented body:
fix(module): update component behavior
Behavior:
- Adjust the default state for the affected component.
- Keep existing behavior unchanged for unsupported input.
Implementation:
- Move repeated logic into a small helper.
- Update related configuration to use the new helper.
Tests:
- Add coverage for the updated behavior.
- Run the relevant validator before pushing.git commit with multiple -m arguments or an editor-free equivalent so the body is preserved.--no-verify.git push.git push -u origin <current_branch> unless the repository or user specifies another remote.git fetch and inspect before retrying.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.