Agent Skills: Fetch Bugfix PRs

>

UncategorizedID: opendatahub-io/ai-helpers/vllm-backport-fetch-prs

Repository

opendatahub-ioLicense: Apache-2.0
3674

Install this agent skill to your local

pnpm dlx add-skill https://github.com/opendatahub-io/ai-helpers/tree/HEAD/helpers/skills/vllm-backport-fetch-prs

Skill Files

Browse the full folder contents for vllm-backport-fetch-prs.

Download Skill

Loading file tree…

helpers/skills/vllm-backport-fetch-prs/SKILL.md

Skill Metadata

Name
vllm-backport-fetch-prs
Description
>

Fetch Bugfix PRs

Fetches merged bugfix PRs from vllm-project/vllm using multiple GitHub search queries (label:bug, [Bugfix]/[BugFix]/[Bug Fix] in title) and deduplicates results. Also detects reverted PRs.

Usage

bash scripts/fetch-bugfix-prs.sh [DAYS_BACK]
  • DAYS_BACK — number of days to look back (default: 7)
  • stdout — JSON array of PR objects
  • stderr — progress messages

Output Schema

Each PR object contains:

  • number, title, mergedAt, mergeCommit.oid
  • labels, author.login, mergedBy.login
  • label_names — flattened list of label strings
  • reverted_by — PR number that reverted this one (or null)

Example

mkdir -p artifacts/backport-triage
bash scripts/fetch-bugfix-prs.sh 14 > artifacts/backport-triage/raw-prs.json

Determining DAYS_BACK

Check the latest report directory to auto-detect how far back to look:

LAST=$(ls -1d reports/<version>/*/ 2>/dev/null | tail -1)

If no previous report exists, compute days since the release date.