vllm-rocm-pr-review

vllm-rocm-pr-review is a skill for Claude Code, Codex from shen-shanshan/vllm-dev-skills. It costs 137 tokens per session (3,225 once invoked), scanned A, original, Apache-2.0.

A review guide for pull requests involving AMD GPUs and ROCm, AMD's software platform for GPU computing, in the vLLM project. It produces a concise review report in Chinese.

In plain words
What is it for?
It is for reviewing vLLM pull requests related to AMD or ROCm changes and writing findings ordered by severity and grouped by type.
Why use it?
It gives reviewers a focused way to assess the purpose, code changes, risks, discussions, and final recommendation for these pull requests.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /Users/shanshan-shen/.claude/skills/vllm-rocm-pr-review/scripts/fetch_pr_data.py.

Good fit It is for reviewing vLLM pull requests related to AMD or ROCm changes and writing findings ordered by severity and grouped by type.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for vllm-rocm-pr-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/shen-shanshan/vllm-dev-skills/vllm-rocm-pr-review/github.svg)](https://agentmods.dev/skills/shen-shanshan/vllm-dev-skills/vllm-rocm-pr-review)
Your own site
<a href="https://agentmods.dev/skills/shen-shanshan/vllm-dev-skills/vllm-rocm-pr-review"><img src="https://agentmods.dev/badge/skills/shen-shanshan/vllm-dev-skills/vllm-rocm-pr-review/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for vllm-rocm-pr-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/shen-shanshan/vllm-dev-skills/vllm-rocm-pr-review"><img src="https://agentmods.dev/badge/skills/shen-shanshan/vllm-dev-skills/vllm-rocm-pr-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 137 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,225 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00137 $0.03225
Opus 5 $0.00068 $0.01613
Sonnet 5 $0.00027 $0.00645
Haiku 4.5 $0.00014 $0.00323

Measured 13d ago against content hash 0c49e46d8ea2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

vllm-rocm-pr-review scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/fetch_pr_data.py, scripts/update_skill.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/vllm-rocm-pr-review/SKILL.md · 183 lines

How it starts

The opening of the file, as written. The whole thing — 183 lines — stays where its author put it; the contents beside it link to each section on GitHub.

vLLM ROCm PR Review

Review a vllm-project/vllm PR through an AMD/ROCm lens, then write a concise Chinese review report to ./outputs/pr-<NUMBER>-review.md.

Knowledge sources (kept in references/):

File Content When to read
references/vllm-rocm-review-rules.md Curated rule catalog adapted from the ATOM/aiter review skills to vLLM's ROCm surface The mandatory checklist (Step 6)
references/upstream/atom-review-pr-skill.md Full upstream ATOM review-pr skill Deep reviews / new rule discovery
references/upstream/aiter-review-pr-skill.md Full upstream aiter review-pr skill Deep reviews / new rule discovery
references/upstream/mori-readme.md + mori-structure.json mori (AMD comm library) README + repo tree snapshot PRs touching mori / MORI-EP / moriio
references/example-report.md A completed Chinese review report as style anchor Before writing the report

Context economy: for quick reviews, read only the rule categories mapped by the PR type (Step 4) plus the core discipline section of the rules file. For deep reviews (Tier-1 backbone files touched, mori changes, perf claims), read the full rules file.

Workflow

  1. Fetch PR data — scripts/fetch_pr_data.py
  2. ROCm relevance gate
  3. Semantic understanding (5 questions)
  4. PR-type classification → mandatory rule categories
  5. Backbone-file risk assessment
  6. Apply the rule checklist
  7. AI-code diagnostic + blind-spot check
  8. Write the report to ./outputs/ and tell the user the path

Step 1: Fetch PR Data

python3 /Users/shanshan-shen/.claude/skills/vllm-rocm-pr-review/scripts/fetch_pr_data.py <PR_NUMBER> \
    --output /tmp/vllm_rocm_pr_<PR_NUMBER>.json --include-ci

The JSON contains:

Key Content
pr PR metadata: title, body, author, state, labels, additions/deletions, branch names, linked reviews
diff Full unified diff of all changed files
files Per-file stats: filename, status, additions, deletions, patch
issue_comments General discussion comments
review_comments Inline code review comments
reviews Top-level reviews (approvals, change requests)
checks CI check status (only when --include-ci was passed; absent = CI status unknown)

Read the full file on GitHub · 183 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 13d ago First seen · 183 lines · 137 tokens per session scan A 0c49e46d8ea2

Subscribe to this mod's changes

vllm-rocm-pr-review is a skill published in the GitHub repository shen-shanshan/vllm-dev-skills (17 stars, last pushed 3d ago), licensed Apache-2.0. It adds 137 tokens to every session and 3,225 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

open-code-review

Performs AI-powered code review on Git changes using the ocr CLI from alibaba/open-code-review. Use when the user asks to review code, review a pull request, review staged/unstaged changes, review a commit, or compare branches for code quality issues. Produces line-level review comments and can automatically apply…

alibaba/open-code-review · 98 tokens

continual-learning

Nightly refinement of an existing per-repo review-style prompt using this reviewer's own finding outcomes. Read confirmed (resolved-by-commit / thumbs-up) and dismissed (thumbs-down) findings, promote the bug patterns the team actually fixes, demote the false-positive patterns, reconcile against the current prompt…

langchain-ai/open-swe · 89 tokens

camsnap

Capture frames or clips from RTSP/ONVIF cameras. Grabs snapshots, video clips, and motion events from IP cameras, security cameras, and video streams. Use when the user wants to take a snapshot from a camera, record a clip from an RTSP stream, monitor motion on a security camera, discover ONVIF devices on the network…

elizaOS/eliza · 84 tokens

learn-from-sage

Detection-gap (miss) analysis for Code Review Sage. Learn from shipped fixes, acted-on human comments, and design outcomes to close reviewer blind spots. Inline during review stages a candidate; a human triggers a one-shot AI consolidation into the live ruleset.

kirodotdev/KiroCrew · 56 tokens

meta-codereview-current-diff

Read the current uncommitted diff, run three independent reviewers (safety + tests-coverage + style) in parallel, then arbitrate a single BLOCK / BLOCKWITHOVERRIDE / PASSWITHNOTES verdict. Use before commit when you want a multi-perspective second-opinion instead of a single-reviewer agent loop.

opensquilla/opensquilla · 73 tokens

omh-image-cards

This is a Hermes-native img-summary workflow skill.

rlaope/oh-my-hermes · 66 tokens