helpers/skills/vllm-backport-fetch-prs/SKILL.md
Fetch merged bugfix PRs from vllm-project/vllm within a date window. Use when starting a backport triage run to get raw PR data from GitHub. Outputs a JSON array of PR objects with labels, authors, and merge commits.
npx skillsauth add opendatahub-io/ai-helpers vllm-backport-fetch-prsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.
bash scripts/fetch-bugfix-prs.sh [DAYS_BACK]
DAYS_BACK — number of days to look back (default: 7)Each PR object contains:
number, title, mergedAt, mergeCommit.oidlabels, author.login, mergedBy.loginlabel_names — flattened list of label stringsreverted_by — PR number that reverted this one (or null)mkdir -p artifacts/backport-triage
bash scripts/fetch-bugfix-prs.sh 14 > artifacts/backport-triage/raw-prs.json
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.
tools
Use this skill to filter a pre-fetched set of Hacker News stories down to those that report supply-chain security threats relevant to software developers — including malicious packages on npm or PyPI, compromised developer tooling, and attacks targeting source code repositories or CI/CD infrastructure. Reads stories from stories.json in the workspace, performs semantic analysis (fetching HN threads when the title alone is ambiguous), and writes the stories worth alerting on to findings.json.
development
Run hexora static analysis on a Python package repository to detect suspicious code patterns, then triage findings with deterministic rules and AI reasoning to produce a structured risk report section.
development
Inspect recent git history of a Python package repository for suspicious commits touching supply-chain-sensitive files, then triage findings with AI reasoning to produce a structured risk report section.
development
Scan a Python package repository for compiled/binary files using Fromager-style detection and malcontent YARA analysis, then triage findings with deterministic rules and AI reasoning to produce a structured risk report section.