helpers/skills/vllm-compare-reqs/SKILL.md
Use this skill to compare vllm requirements files between versions
npx skillsauth add opendatahub-io/ai-helpers vllm-compare-reqsInstall 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.
Compare vllm requirements files and Dockerfiles between versions to identify dependency changes, providing intelligent analysis for AIPCC package onboarding workflows.
For accelerator builds (ROCm, CUDA, TPU, XPU), Dockerfile comparison is critical because they specify exact commits/branches for dependencies built from source (PyTorch, Triton, Flash Attention, etc.) - information not available in requirements files.
Note: Starting from v0.20, vllm moved build requirements into a build/ subdirectory (e.g., build/rocm.txt instead of rocm-build.txt). The script automatically handles both layouts, falling back to the old paths for older versions. This makes cross-version comparisons (e.g., v0.19 vs v0.20) work seamlessly.
Executable Script - Runs a Python script to fetch and compare requirements files from the vllm GitHub repository.
Use this skill when you need to:
Note: Variant comparisons include BOTH runtime and build dependencies to ensure complete coverage.
./scripts/compare_reqs.py <version1> <version2> <variant|file> [--pretty]
v0.13.0, v0.14.0rc1)rocm, cuda, cpu, tpu, xpu (auto-includes runtime + build requirements + Dockerfiles)build/rocm.txt, common.txt, docker/Dockerfile.rocm, etc. (old-style paths like rocm-build.txt also accepted)# Compare ROCm runtime + build requirements + Dockerfiles
./scripts/compare_reqs.py v0.19.0 v0.20.2 rocm
# Compare CUDA runtime + build requirements + Dockerfiles
./scripts/compare_reqs.py v0.19.0 v0.20.2 cuda
# Compare specific file only
./scripts/compare_reqs.py v0.19.0 v0.20.2 common.txt
./scripts/compare_reqs.py v0.19.0 v0.20.2 build/rocm.txt
./scripts/compare_reqs.py v0.19.0 v0.20.2 docker/Dockerfile.rocm_base
# Cross-version comparison (old layout vs new layout - handled automatically)
./scripts/compare_reqs.py v0.18.0 v0.20.2 rocm
# All variants (auto-detects correct file paths per version)
./scripts/compare_reqs.py v0.19.0 v0.20.2 rocm # common.txt + rocm.txt + build/rocm.txt + Dockerfiles
./scripts/compare_reqs.py v0.19.0 v0.20.2 cuda # common.txt + cuda.txt + build/cuda.txt + Dockerfile
./scripts/compare_reqs.py v0.19.0 v0.20.2 cpu # common.txt + cpu.txt + build/cpu.txt + Dockerfile.cpu
./scripts/compare_reqs.py v0.19.0 v0.20.2 tpu # common.txt + tpu.txt + Dockerfile.tpu
./scripts/compare_reqs.py v0.19.0 v0.20.2 xpu # common.txt + xpu.txt + Dockerfile.xpu (Intel GPU)
The script provides clean, categorized output with a summary table followed by detailed changes:
=== Comparing rocm variant (runtime + build + Dockerfiles): v0.19.0 -> v0.20.2 ===
📊 Change Summary Table:
File Package Old Version New Version Type
────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
common.txt protobuf - >= 6.30.0 Added
common.txt grpcio - >=1.76.0 Added
build/rocm.txt torch ==2.9.0 ==2.9.1 Changed
build/rocm.txt triton ==3.5.0 ==3.5.1 Changed
docker/Dockerfil... PYTORCH_BRANCH=1c57644d Changed
docker/Dockerfil... MORI_BRANCH=2d02c6a9 - Added
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📄 common.txt
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📦 Changed:
xgrammar == 0.1.27 → xgrammar == 0.1.29
mistral_common[image] >= 1.8.5 → mistral_common[image] >= 1.8.8
➕ Added:
protobuf >= 6.30.0 # Required by LlamaTokenizer, gRPC.
grpcio>=1.76.0
➖ Removed:
scipy # Required for phi-4-multimodal-instruct
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📄 build/rocm.txt
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📦 Changed:
torch==2.9.0 → torch==2.9.1
triton==3.5.0 → triton==3.5.1
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🐳 docker/Dockerfile.rocm_base
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📦 Changed:
BASE_IMAGE=rocm/dev-ubuntu-22.04:7.1-complete → BASE_IMAGE=rocm/dev-ubuntu-22.04:7.0-complete
PYTORCH_BRANCH=1c57644d → PYTORCH_BRANCH=89075173
AITER_BRANCH=59bd8ff2 → AITER_BRANCH=6af8b687
➕ Added:
MORI_BRANCH=2d02c6a9
MORI_REPO=https://github.com/ROCm/mori.git
RIXL_BRANCH=50d63d94
RIXL_REPO=https://github.com/vcave/RIXL.git
After running the script and displaying the output, you must provide intelligent impact analysis:
## Summary of Changes: vllm v0.13.0 → v0.14.0rc1
### Impact Level: Medium
### AIPCC Wheels Builder Impact:
#### ✅ No Action Required:
- ROCm version remains at 6.4
- PyTorch ecosystem stable (minor patch updates only)
#### ⚠️ Action Required:
**New packages to onboard:**
1. **`grpcio>=1.76.0`** (NEW)
- Purpose: gRPC support
- Complexity: Compiled extension (C++)
- PyPI: https://pypi.org/project/grpcio/
- Action: Onboard grpcio 1.76.0+
**Version updates:**
- torch: 2.9.0 → 2.9.1 (patch - safe)
- triton: 3.5.0 → 3.5.1 (patch - safe)
**Removed dependencies:**
- scipy: Was required for phi-4-multimodal-instruct
- Risk: Low (model-specific, may not be widely used)
#### Next Steps:
1. Onboard grpcio>=1.76.0 to wheels builder
2. Verify torch 2.9.1 and triton 3.5.1 availability
3. Test vllm 0.14.0rc1 build with new dependencies
4. Validate phi-4 model functionality without scipy
**Context:** This release adds gRPC support and updates to PyTorch 2.9.1.
When onboarding a new vllm version:
When builds fail:
When planning releases:
The script detects and reports errors for:
rocm-build.txt vs new build/rocm.txt)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.