resolve-conflicts — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited resolve-conflicts (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.
Rebase the current branch onto the target branch to resolve PR conflicts.
Steps:
gh pr view --json baseRefName,url 2>/dev/null to get the PR's target branch and URL (requires gh and GitHub).git remote show origin 2>/dev/null | grep 'HEAD branch' to detect the default branch from the remote config (works with any git host).main, master, or develop exist on the remote with git branch -r.git fetch origin to ensure the latest remote changes are available.git rebase origin/<target-branch>.git diff --name-only --diff-filter=U to list conflicting files.theirs) if it supersedes the current change.ours) if the incoming change is unrelated.git add <file> to mark it resolved.git rebase --continue to proceed. If more conflicts arise, repeat step 5.git rebase --abort, explain what was ambiguous, and ask the user to resolve it manually.git push --force-with-lease to update the remote branch.$ARGUMENTS
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.