vllm

vllm is a skill for Claude Code from datathings/marketplace. It costs 99 tokens per session (2,655 once invoked), scanned A, original, Apache-2.0.

A Python guide for vLLM, a tool for running large language models to generate text, chat responses, embeddings, classifications, and structured results. It covers both local batch processing and an OpenAI-compatible web server.

In plain words
What is it for?
Use it to run language models from Python, process many prompts, expose chat or completion APIs, generate schema-conforming JSON, serve embeddings, or use LoRA adapters and multimodal inputs.
Why use it?
It gives developers one reference for using vLLM instead of piecing together separate examples for offline generation and online serving. It also explains model adapters, media inputs, parallel processing, quantization, caching, and tool calls.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the vllm plugin — 1 skill shipped together

Good fit Use it to run language models from Python, process many prompts, expose chat or completion APIs, generate schema-conforming JSON, serve embeddings, or use LoRA adapters and multimodal inputs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/datathings/marketplace/vllm
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add datathings/marketplace --skill vllm
Clone the repo
git clone --depth 1 https://github.com/datathings/marketplace

Made for: Claude Code.

Or install vllm, the plugin that ships this one along with the rest of its 1 skill.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/datathings/marketplace/vllm.svg)](https://agentmods.dev/skills/datathings/marketplace/vllm)
Your own site
<a href="https://agentmods.dev/skills/datathings/marketplace/vllm"><img src="https://agentmods.dev/badge/skills/datathings/marketplace/vllm.svg" alt="Measured on agentmods" height="20"></a>
Per session 99 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,655 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00099 $0.02655
Opus 5 $0.00049 $0.01327
Sonnet 5 $0.00020 $0.00531
Haiku 4.5 $0.00010 $0.00265

Measured 8d ago against content hash 1f88570127b7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

vllm 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 8d ago.

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.

plugins/vllm/skills/vllm/SKILL.md · 228 lines

How it starts

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

vLLM v0.19.0 Python API Guide

Comprehensive reference for vLLM -- a high-throughput, memory-efficient inference engine for large language models.

Overview

vLLM provides two main interfaces:

  1. Offline inference via the LLM class -- batch processing with automatic memory management
  2. Online serving via vllm serve -- OpenAI-compatible REST API with streaming

Key capabilities:

  • High-throughput batched generation with PagedAttention
  • OpenAI-compatible chat completions, completions, and embeddings API
  • Structured outputs (JSON schema, regex, grammar, choice)
  • LoRA adapter hot-swapping
  • Multimodal inputs (images, audio, video)
  • Tensor, pipeline, and data parallelism
  • Quantization (AWQ, GPTQ, FP8, and more)
  • Prefix caching for shared prompt prefixes
  • Tool calling / function calling

Quick Start

from vllm import LLM, SamplingParams

llm = LLM(model="meta-llama/Llama-3.1-8B-Instruct")
params = SamplingParams(temperature=0.8, max_tokens=256)

# Text completion (no chat template)
outputs = llm.generate(["The future of AI is"], params)
print(outputs[0].outputs[0].text)

# Chat completion (applies chat template)
outputs = llm.chat(
    [{"role": "user", "content": "What is vLLM?"}],
    sampling_params=params,
)
print(outputs[0].outputs[0].text)

When to Use This Skill

  • Writing Python code that uses vLLM for inference
  • Configuring vllm serve for production deployment
  • Using structured outputs (JSON, regex, grammar)
  • Setting up LoRA adapter serving
  • Passing multimodal inputs (images, audio, video)
  • Tuning sampling parameters
  • Understanding output types and result handling
  • Migrating from vLLM v0.16.x to v0.19.0

Core Concepts

LLM Class

The main offline inference API. Created with a model name/path, automatically manages GPU memory and batching.

from vllm import LLM
llm = LLM(model="meta-llama/Llama-3.1-8B-Instruct")

SamplingParams

Controls generation behavior: temperature, top-p, max tokens, stop sequences, structured outputs, etc.

Read the full file on GitHub · 228 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 8d ago First seen · 228 lines · 99 tokens per session scan A 1f88570127b7

Subscribe to this mod's changes

vllm is a skill published in the GitHub repository datathings/marketplace (11 stars, last pushed 11d ago), licensed Apache-2.0. It adds 99 tokens to every session and 2,655 once invoked, about $0.0005 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

accelerate

Run PyTorch training across GPUs with minimal changes.

NousResearch/hermes-agent · 13 tokens

developing-genkit-python

Develop AI-powered applications using Genkit in Python. Use when the user asks about Genkit, AI agents, flows, or tools in Python, or when encountering Genkit errors, import issues, or API problems.

google/skills · 49 tokens

optimize-for-gpu

GPU-accelerates scientific Python on NVIDIA hardware and verifies that the result is correct and faster. Use for CUDA/GPU optimization; CPU-bound NumPy, SciPy, pandas, scikit-learn, NetworkX, scikit-image, vector-search, image-processing, graph, simulation, or file-I/O workloads; CuPy, cuDF, cuML, cuGraph, cuVS…

K-Dense-AI/scientific-agent-skills · 151 tokens

marimo-pair

Work inside the user's live marimo notebook from the code editor: run Python in the same kernel the user does, inspect live notebook state, and commit durable notebook changes through code mode. Use whenever you create, analyze, or improve the user's marimo notebook.

marimo-team/marimo · 57 tokens

minicpm5-deploy-transformers

Run MiniCPM5-1B or MiniCPM5-2B with Hugging Face Transformers for one-shot Python generation on GPU (bfloat16) or CPU (float32). Use when the user wants a quick Python script, no server, no extra deps, or asks for "Transformers", "AutoModelForCausalLM", "model.generate" with MiniCPM5.

OpenBMB/MiniCPM · 90 tokens

azure-mgmt-fabric-py

Azure Fabric Management SDK for Python. Use for managing Microsoft Fabric capacities and resources. Triggers: "azure-mgmt-fabric", "FabricMgmtClient", "Fabric capacity", "Microsoft Fabric", "Power BI capacity".

microsoft/skills · 51 tokens