nemoclaw-maintainer-pr-comparator

oleh nvidia

Compares competing PRs that target the same issue and recommends which one to merge. Runs gate, correctness, and quality checks; outputs a deterministic…

npx skills add https://github.com/nvidia/nemoclaw --skill nemoclaw-maintainer-pr-comparator

PR Comparator

Picks the merge winner among competing PRs for a single issue. Tier 0 gates eliminate plumbing failures; Tiers 1-2 score correctness and quality; Tier 3 applies deterministic tiebreakers. Degraded mode handles the case where no PR passes gates.

Prerequisites

  • gh CLI installed and authenticated
  • A target repository with an issue that has 2+ open PRs

Repo policy

Defaults assume NemoClaw conventions (security CODEOWNERS, DCO, CodeRabbit, docs/ directory). For other repos, edit repo-policy.md to override.

Workflow

Copy this checklist into your response and check off each step:

PR Comparison Progress:
- [ ] Step 1: Parse issue (body + comments) for acceptance criteria
- [ ] Step 2: Discover candidate PRs (default-order search with stop conditions)
- [ ] Step 3: Detect supersession (parse PR bodies)
- [ ] Step 4: Run Tier 0 gates per PR
- [ ] Step 5: Run Tier 1 correctness checks per PR
- [ ] Step 6: Run Tier 2 quality checks per PR
- [ ] Step 7: Compute weighted scores
- [ ] Step 8: Apply Tier 3 ranking (happy path or degraded mode)
- [ ] Step 9: Emit verdict using templates/verdict.md

Step 1: Parse issue

Extract acceptance criteria from issue body and all comments:

gh issue view <issue-number> --json title,body,comments

Read every comment — commenters often add asks the body doesn't capture.

Step 2: Discover candidate PRs

scripts/find-candidates.sh <issue-number>

Applies a single default order with stop conditions.

Step 3: Detect supersession

scripts/parse-supersession.sh <pr-number-1> <pr-number-2> ...

Parses each PR body for supersedes #N, replaces #N, closes in favor of #N, folds in #N. A PR that supersedes another wins ties immediately.

Step 4: Tier 0 gates

scripts/collect-gates.sh <pr-number>
scripts/check-coderabbit-threads.sh <pr-number>
node --experimental-strip-types --no-warnings ../nemoclaw-maintainer-day/scripts/check-gates.ts <pr-number>

Seven gates, all mandatory. Use the shared gate result's PR Advisor recommendation for the Advisor gate: it is true only when the trusted exact-head result both passes and reports merge_as_is; a missing recommendation is false. See checks/tier-0-gates.md for the full list and interpretation.

Step 5: Tier 1 correctness

Six checks, all LLM judgments. See checks/tier-1-correctness.md for evidence requirements per check.

Step 6: Tier 2 quality

Three checks, all LLM judgments. See checks/tier-2-quality.md.

Step 7: Weighted score

  • Build the Tier 0 eligibility set from exactly these seven boolean keys: state_open, ci_green_latest_sha, mergeable, contributor_compliance, branch_protection, pr_advisor_merge_as_is, and coderabbit_threads_resolved.
  • Stop if any candidate omits a key, adds an unknown key, or supplies a non-boolean value.
  • Only PRs for which all seven gates are true enter happy-path scoring.
  • Each pass = full points
  • Each yellow = half points
  • Each fail = zero
  • Tier 1 weight: 2.0× per check
  • Tier 2 weight: 1.0× per check

Step 8: Tier 3 ranking

Derive the mode from the Tier 0 eligibility set rather than accepting a caller-provided mode. In happy mode, set winner only to a PR in that set and leave closest_to_ready null. In degraded mode, leave winner null and use closest_to_ready only for an open, contributor-compliant salvage candidate. See tiebreakers.md for happy-path tiebreakers, degraded-mode distance-to-ready ranking, and the behavior-coverage matrix.

Step 9: Emit verdict

Use templates/verdict.md. Pass the generated spec through scripts/render-verdict.py; do not render or recommend a merge if it exits nonzero. The renderer independently validates the seven gates, recomputes eligibility and mode, and rejects a winner outside the eligible set. Every judgment must carry evidence (file:line refs, diff snippets), reasoning chain, and the score it contributed.

Reference files

  • repo-policy.md — configurable defaults per target repo
  • checks/tier-0-gates.md — plumbing gates
  • checks/tier-1-correctness.md — six correctness checks
  • checks/tier-2-quality.md — three quality checks
  • tiebreakers.md — Tier 3 ranking and degraded mode
  • templates/verdict.md — output template
  • validation/backtest.md — backtest the skill against historical cases

Scripts (execute, do not read)

  • scripts/find-candidates.sh — PR discovery
  • scripts/collect-gates.sh — Tier 0 gate evaluation
  • scripts/check-coderabbit-threads.sh — GraphQL thread resolution
  • ../nemoclaw-maintainer-day/scripts/check-gates.ts — trusted PR Review Advisor result
  • scripts/parse-supersession.sh — body parsing for supersession refs
  • scripts/render-verdict.py — verdict scorecard renderer

What this skill does NOT do

These require infrastructure beyond GitHub API + LLM and are deferred to v2 modules:

  • Running each PR's code against adversarial inputs (sandboxed execution)
  • Cross-issue regression sweep (separate skill)
  • Revert simulation against neighbor PRs
  • Static analyzer integration (CodeQL, Semgrep)