with one click
ipr
// Create a GitHub issue and pull request in oracle/graalvm-reachability-metadata, link the PR to the issue, and request reviews from the standard reviewer set except the PR author.
// Create a GitHub issue and pull request in oracle/graalvm-reachability-metadata, link the PR to the issue, and request reviews from the standard reviewer set except the PR author.
Review pull requests with the `library-update-request` label in graalvm-reachability-metadata. Use when asked to review or triage a PR that updates metadata/tests for an existing library version, especially generated PRs titled like `[GenAI] Improve coverage for group:artifact:version using gpt-5.5`. Focus on preserving dynamic-access coverage percentage between versions, verifying reporter-requested metadata is present and exercised by tests, and applying the relevant test/scope rules from new-library reviews without requiring a minimum new-library dynamic-access coverage threshold.
Review automated pull requests with the `library-bulk-update` label in graalvm-reachability-metadata. Use when asked to review or triage a PR that bumps tested versions for existing libraries, including approve vs close decisions, CI checks, diff-scope validation, and verification of `source-code-url`, `test-code-url`, `documentation-url`, and `repository-url` changes.
Review pull requests with the `library-new-request` label in graalvm-reachability-metadata. Use when asked to review or triage a PR that adds metadata and tests for a new library, including PRs titled like `[GenAI] Add support for com.fasterxml:classmate:1.5.1 using gpt-5.4`. Focus on catching scaffold-only tests, version-pinned or package-bypassing tests, and PRs that push more than one library.
Close batches of graalvm-reachability-metadata pull requests that either have the `human-intervention` label or failing CI, and revert their linked issues by clearing assignees and moving project status to `Todo`.
Review pull requests with the `fixes-java-run-fail` label in graalvm-reachability-metadata. Use when asked to review or triage a PR described as `fixes-java-run-fail` or one that fixes Java/JVM runtime test failures for an existing library version update. Focus on validating the Java runtime fix, keeping the diff scoped, and ensuring dynamic-access coverage does not drop between the previously tested version and the new version.
Review pull requests with the `fixes-javac-fail` label in graalvm-reachability-metadata. Use when asked to review or triage a PR that fixes Java compilation failures for an existing library version update. Focus on validating the compile fix, keeping the diff scoped, and ensuring dynamic-access coverage does not drop between the previously tested version and the new version.
| name | ipr |
| description | Create a GitHub issue and pull request in oracle/graalvm-reachability-metadata, link the PR to the issue, and request reviews from the standard reviewer set except the PR author. |
| argument-hint | [title-or-summary] |
Use this skill when asked to create an issue and PR for
oracle/graalvm-reachability-metadata and request the standard reviewer set
other than the PR author.
Standard reviewers:
kimetajormundur00vjovanovConfirm the working tree and branch are suitable for a PR.
git status --short
git branch --show-current
git remote -v
Create the issue.
gh issue create \
-R oracle/graalvm-reachability-metadata \
--title "ISSUE_TITLE" \
--body "ISSUE_BODY"
Push the branch.
git push -u origin HEAD
origin, use the configured fork remote.Create the PR and link it to the issue.
Fixes #ISSUE_NUMBER or Closes #ISSUE_NUMBER in the PR body so
GitHub links the PR to the issue.gh pr create \
-R oracle/graalvm-reachability-metadata \
--title "PR_TITLE" \
--body "PR_BODY
Fixes #ISSUE_NUMBER"
- If a PR already exists for the current branch, update its body to include
the issue link instead of creating a duplicate.
5. Request reviewers.
- Request only the standard reviewers other than the PR author. For PRs
authored by `vjovanov`, request `kimeta` and `jormundur00`.
```bash
gh pr edit PR_NUMBER \
-R oracle/graalvm-reachability-metadata \
--add-reviewer kimeta,jormundur00
gh pr view PR_NUMBER -R oracle/graalvm-reachability-metadata --json number,url,reviewRequests,closingIssuesReferences
gh issue view ISSUE_NUMBER -R oracle/graalvm-reachability-metadata --json number,url,state
Confirm:
Report: