Best for
- Use when looking for the next PR to review.
NVIDIA/NemoClaw/.agents/skills/nemoclaw-maintainer-find-review-pr/SKILL.md
Find open PRs with the security label and Urgent or High Project Priority. Link each PR to its issue. Identify competing or superseded PRs and report review candidates. Use when looking for the next PR to review. Trigger keywords - find pr, find review, next pr, pr to review, duplicate pr, security pr.
Decision brief
Find open PRs with the security label and Project Priority Urgent or High. Link each PR to its issue. Identify competing or superseded PRs. Report the results for the maintainer.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/NVIDIA/NemoClaw --skill ".agents/skills/nemoclaw-maintainer-find-review-pr"Inspect the Agent Skill "nemoclaw-maintainer-find-review-pr" from https://github.com/NVIDIA/NemoClaw/blob/68415d6d466ad66e49b4208aabe10588ce7f16e7/.agents/skills/nemoclaw-maintainer-find-review-pr/SKILL.md at commit 68415d6d466ad66e49b4208aabe10588ce7f16e7. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
Read the NemoClaw Development Tracker and select open PRs that carry the canonical security label and have Project Priority Urgent or High:
For each PR, search its body for issue references. Match these patterns without case sensitivity:
Group PRs by linked issue number. If two or more open PRs link to one issue, put them in one competing-PR group.
Run the comparator's canonical detector with the open candidate PR numbers:
If duplicates or superseded PRs exist, present them first in a table:
Permission review
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 90/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 22,265 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Find open PRs with the security label and Project Priority Urgent or High.
Link each PR to its issue. Identify competing or superseded PRs. Report the results for the maintainer.
gh (GitHub CLI) must be installed and authenticated.gh token must have read:project scope.OWNER/REPO).Read the NemoClaw Development Tracker and select open PRs that carry the canonical security label and have Project Priority Urgent or High:
gh project item-list 199 --owner NVIDIA --limit 1000 --format json \
| jq '[.items[]
| select(.content.repository == "NVIDIA/NemoClaw")
| select(.content.type == "PullRequest")
| select(((.labels // []) | index("security")) != null)
| select(.priority == "Urgent" or .priority == "High")
| {number: .content.number, title: .content.title, url: .content.url,
priority: .priority, status: .status}]'
Remove entries for closed PRs.
For each remaining PR, fetch the body, author, branch, labels, and creation time with gh pr view.
If no PRs remain, report that result and stop.
For each PR, search its body for issue references. Match these patterns without case sensitivity:
Fixes #NNN, Closes #NNN, Resolves #NNNRelated Issue / Linked Issue section containing #NNN(#NNN) suffixfix/something-NNNBuild a mapping: PR# → [issue numbers].
If a PR has no detectable linked issue, mark it as (no linked issue).
Group PRs by linked issue number. If two or more open PRs link to one issue, put them in one competing-PR group.
Fetch these fields for each competing PR:
gh pr view <number> --json number,title,author,createdAt,additions,deletions,reviewDecision,statusCheckRollup --jq '{number,title,author: .author.login,created: .createdAt,additions,deletions,review: .reviewDecision,checks: [.statusCheckRollup[]?.conclusion] | unique}'
Run the comparator's canonical detector with the open candidate PR numbers:
../nemoclaw-maintainer-pr-comparator/scripts/parse-supersession.sh <pr-number-1> <pr-number-2> ...
It recognizes the comparator parser's case-insensitive statement families:
supersed[a-z]* before #N: supersedes #N points from the current PR to #N; superseded by #N points from #N to the current PR.replac[a-z]* before #N: replaces #N points from the current PR to #N; replaced by #N points from #N to the current PR.clos[a-z]* in favor of before #N: closes in favor of #N and closed in favor of #N point from #N to the current PR.fold[a-z]* in before #N: folds in #N points from the current PR to #N; folded into #N points from #N to the current PR.The bracket expressions describe the parser grammar; they are not literal PR body text.
A follow-up to #N statement is a related-PR signal, not a supersession declaration,
unless one of these phrases also appears.
Each supersession phrase must name another open candidate PR. It indicates that one PR can include the other. It records a relationship but does not prove that the target carries the source PR's work.
When the target claims the source PR's full scope, compare their commits and diffs.
If material code, tests, or documentation from another contributor remains in the target,
apply the canonical policy in
../nemoclaw-maintainer-policies/references/workflow-policy.md.
This skill reports recommendations only. Do not recommend closing the source PR until another authorized workflow has:
If duplicates or superseded PRs exist, present them first in a table:
### Duplicate PRs (same issue)
| Issue | PR | Author | Title | +/- | Status |
|-------|-----|--------|-------|-----|--------|
| #804 | #1121 | user1 | ... | +50/-10 | Checks passing |
| #804 | #1300 | user2 | ... | +80/-20 | Checks failing |
**Recommendation:** #1121 is smaller and passing checks — consider closing #1300.
For superseded PRs:
### Superseded PRs
- #1416 supersedes/folds in #1392 (shell-quote sandboxName)
Keep #1392 open while an authorized workflow completes any required transfer, verifies the updated commits, attribution, and CI, and reruns the comparator.
After the updated verdict selects #1416 and #1416 merges, consider closing #1392 only if #1416 contains its full scope and preserves any required contributor attribution.
Present PRs without competing PRs in a table:
### Review candidates (no duplicates)
| PR | Issue | Priority | Title | Author | Age |
|----|-------|----------|-------|--------|-----|
| #1476 | #577 | Urgent | disable remote uninstall fallback | user1 | 2d |
| #1121 | #804 | High | Landlock read-only /sandbox | user2 | 6d |
Recommend one PR to review first. Apply these priorities in order:
Urgent before High)Frequently asked questions
Find open PRs with the security label and Project Priority Urgent or High. Link each PR to its issue. Identify competing or superseded PRs. Report the results for the maintainer.
The source record exposes this install command: npx skills add https://github.com/NVIDIA/NemoClaw --skill ".agents/skills/nemoclaw-maintainer-find-review-pr". Inspect the command and pinned source before running it.
Alternatives
coreyhaines31/marketingskills
When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program
coreyhaines31/marketingskills
When the user wants to reduce churn, build cancellation flows, set up save offers, recover failed payments, or implement retention strategies. Also use when the user mentions 'churn,' 'cancel flow,' 'offboarding,' 'save offer,' 'dunning,' 'failed payment recovery,' 'win-back,' 'retention,' 'exit survey,' 'pause subscription,' 'involuntary churn,' 'people keep canceling,' 'churn rate is too high,' 'how do I keep users,' or 'customers are leaving.' Use this whenever someone is losing subscribers o
alirezarezvani/claude-skills
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
wanshuiyin/Auto-claude-code-research-in-sleep
Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.