helpers/skills/vllm-backport-cherry-pick/SKILL.md
Auto cherry-pick backport candidates and create a draft PR on the downstream repo. Use after scoring to attempt clean cherry-picks for ai-fixable candidates. The agent must still do semantic validation on the result.
npx skillsauth add opendatahub-io/ai-helpers vllm-backport-cherry-pickInstall 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.
Selects eligible candidates from ranked.json, attempts cherry-pick on each, and creates a draft PR if any succeed.
A PR is eligible if ALL of:
backport_ease == "ai-fixable"score >= 50already_backported == falseverdict is must_backport or likely_relevantbash scripts/cherry-pick.sh \
--input artifacts/backport-triage/ranked.json \
--downstream /path/to/downstream-repo \
--branch rhai/0.13.0 \
--jira-url "https://redhat.atlassian.net/browse/..." \
--report-url "https://github.com/..." \
--output artifacts/backport-triage/cherry-pick-result.json
cherry-pick-result.json:
{
"status": "created|skipped",
"pr_url": "https://...",
"succeeded": 3,
"conflicts": 1,
"results": [{"number": 12345, "title": "...", "score": 85, "status": "success|conflict"}]
}
After this skill runs, the agent MUST:
ai-autofix-candidatetools
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.