pr-summary — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited pr-summary (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.
git status — confirm no uncommitted changes.git log [base-branch]...HEAD --oneline — all commits that will be in the PR.git diff [base-branch]...HEAD — full diff for context.git status — check if branch tracks a remote (determines if push is needed).Use main or master as the base branch unless the user specifies otherwise.
Identify: what changed, why it changed, and what a reviewer needs to verify.
# Push if not already on remote
git push -u origin HEAD
# Create PR
gh pr create --title "your title" --body "$(cat <<'EOF'
## Summary
- bullet
## Test plan
- [ ] step
EOF
)"Return the PR URL when done.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.