nemoclaw-maintainer-find-review-pr

Finds open security-labeled PRs with Urgent or High priority and reports review candidates.

Updated Aug 1, 2026
One-click install
npx skills add https://github.com/Army161/NemoClaw --skill nemoclaw-maintainer-find-review-pr-army161
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: nemoclaw-maintainer-find-review-pr
Source: https://github.com/Army161/NemoClaw/tree/main/.agents/skills/nemoclaw-maintainer-find-review-pr
Command: npx skills add https://github.com/Army161/NemoClaw --skill nemoclaw-maintainer-find-review-pr-army161

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Maintainers of the NemoClaw repository struggle to identify which open pull requests need review first, especially when multiple PRs target the same issue or supersede one another. This Skill automates the triage of security-labeled PRs by priority, linked issues, and duplication. ## Core Features & Use Cases - Priority-based PR discovery: Queries the NemoClaw Development Tracker GitHub project for open PRs carrying the security label with Project Priority Urgent or High. - Issue linking and duplicate detection: Extracts linked issue numbers from PR bodies, titles, and branch names, then groups competing PRs that target the same issue. - Supersession analysis: Runs a canonical parser to detect statements like supersedes #N or closes in favor of #N, and reports which PRs fold in or replace others. - Use Case: A maintainer asks which security PR to review next; the Skill returns a ranked table of candidates, flags duplicates for issue #804, and recommends the oldest Urgent PR with passing checks. ## Quick Start Ask the agent to find the next security PR to review in the NVIDIA/NemoClaw repository.

Frequently Asked Questions about nemoclaw-maintainer-find-review-pr

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find the next PR to review on GitHub?

Use the gh CLI to list open PRs filtered by label and project priority, then rank them by priority, age, check status, and diff size. This Skill automates that query against the NemoClaw Development Tracker project and returns a ranked candidate table.

How to detect duplicate pull requests for the same issue?

Extract issue references from each PR body, title, and branch name using patterns like Fixes #NNN or Closes #NNN, then group PRs by linked issue number. Any issue with two or more open PRs forms a competing-PR group to compare by diff size, checks, and review status.

What GitHub CLI permissions are needed to read project priorities?

The gh CLI must be installed and authenticated, and the active token must have the read:project scope to query GitHub Projects fields like Priority and Status. You must also run inside a GitHub repository or specify OWNER/REPO explicitly.

Can this Skill close superseded pull requests automatically?

No. The Skill reports findings and recommendations only and never closes a PR. Closing a superseded PR requires an authorized workflow that completes any transfer, verifies commits, attribution, and CI, reruns the comparator, and merges the selected target.

Why does the PR search return no candidates?

No candidates appear when no open PRs carry the security label with Urgent or High priority, when closed PRs are filtered out, or when the gh token lacks read:project scope. Verify authentication and project access before rerunning the query.