helpers/skills/vllm-backport-score-rank/SKILL.md
Score and rank backport candidates using a composite formula based on verdict, severity, scope, risk, and self-containedness. Use after the agent completes semantic analysis to produce a prioritized ranked list.
npx skillsauth add opendatahub-io/ai-helpers vllm-backport-score-rankInstall 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.
Applies a deterministic scoring formula to produce reproducible rankings.
| Field | Values and Points | |---|---| | verdict | must_backport=30, likely_relevant=20, needs_review=10, likely_skip/skip=0 | | severity | critical=25, moderate=15, low=5 | | affected_scope | all_users=20, specific_models=12, specific_feature=8, edge_case=3 | | backport_risk | safe=15, moderate=8, risky=0 | | self_contained | true=10, false=0 |
Max score: 100. Sorted by score desc, then files_in_release desc, then change_size asc.
Each PR also gets backport_ease: ai-fixable if self_contained AND risk is safe/moderate.
python3 scripts/score-and-rank.py \
--input artifacts/backport-triage/analyzed.json \
--output artifacts/backport-triage/ranked.json
analyzed.json — candidates with agent-added fields: verdict, severity,
affected_scope, backport_risk, self_contained.
ranked.json — filtered (removes SKIP/already_backported), scored, sorted,
with rank, score, change_size, backport_ease added.
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.