create-pr-github-git — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited create-pr-github-git (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 GitHub pull request from the current branch, deriving the title and description from the branch's git history.
Steps:
gh is installed and authenticated by running gh auth status. If not, tell the user and stop.gh repo view --json defaultBranchRef --jq '.defaultBranchRef.name'. Use this as the base for all comparisons below (referred to as <base>).git rev-parse --abbrev-ref --symbolic-full-name @{upstream} to check if an upstream is set.git push -u origin HEAD to push and set tracking.git push to make sure the remote is up to date.git log --oneline <base>..HEAD to list commits on this branch.git diff <base>...HEAD --stat to understand what changed.gh pr view --json url,number 2>/dev/null.gh pr create --title "<title>" --body "<description>" to open one. Append any user-provided flags from $ARGUMENTS.gh pr edit --title "<title>" --body "<description>" to update it.$ARGUMENTS
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.