vllm-sr-agent-operations

vllm-sr-agent-operations is a skill for Codex from vllm-project/semantic-router. It costs 93 tokens per session (891 once invoked), scanned A, original, Apache-2.0.

An operations guide for vLLM Semantic Router, using its command-line tool, HTTP API, and YAML configuration files. YAML is a human-readable format often used for service settings.

In plain words
What is it for?
Deploying vLLM-SR, editing and validating its configuration, planning changes, testing request routing, and running benchmark checks.
Why use it?
It reduces the risk of changing the wrong setting or using outdated API details by requiring discovery, validation, testing, and recorded evidence before changes are applied.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Deploying vLLM-SR, editing and validating its configuration, planning changes, testing request routing, and running benchmark checks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vllm-project/semantic-router/vllm-sr-agent-operations
About the project

vLLM Semantic Router is a programmable routing layer that chooses or combines language models for each request in a system using multiple models and types of computing infrastructure. It helps teams route inference by signals such as user preferences, application policies, quality, cost, latency, privacy, and safety requirements. The catalogue skills and instructions support configuring and operating this model-routing system.

vllm-project/semantic-router · 5,741 stars · on GitHub · vllm-sr.ai

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 vllm-project/semantic-router --skill vllm-sr-agent-operations
Clone the repo
git clone --depth 1 https://github.com/vllm-project/semantic-router

Made for: 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-sr-agent-operations

README.md
[![agentmods](https://agentmods.dev/badge/skills/vllm-project/semantic-router/vllm-sr-agent-operations/github.svg)](https://agentmods.dev/skills/vllm-project/semantic-router/vllm-sr-agent-operations)
Your own site
<a href="https://agentmods.dev/skills/vllm-project/semantic-router/vllm-sr-agent-operations"><img src="https://agentmods.dev/badge/skills/vllm-project/semantic-router/vllm-sr-agent-operations/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-sr-agent-operations

Your own site · 80×15
<a href="https://agentmods.dev/skills/vllm-project/semantic-router/vllm-sr-agent-operations"><img src="https://agentmods.dev/badge/skills/vllm-project/semantic-router/vllm-sr-agent-operations.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 93 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 891 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.00093 $0.00891
Opus 5 $0.00046 $0.00445
Sonnet 5 $0.00019 $0.00178
Haiku 4.5 $0.00009 $0.00089

Measured today against content hash e3dce6c5deea, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

vllm-sr-agent-operations 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 today.

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.

tools/agent/skills/vllm-sr-agent-operations/SKILL.md · 79 lines

How it starts

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

vLLM-SR agent operations

Treat the running Router as the authority for the version it supports. Use YAML as the reviewable source, the management API or CLI as transport, and immutable receipts as evidence. Do not invent a second DSL or scrape Dashboard state.

Discover before acting

  1. Check GET /health and GET /ready on the management listener.
  2. Fetch GET /api/v1?audience=agent&visibility=primary for the compact capability directory.
  3. Narrow discovery with ?capability=<name> or fetch filtered OpenAPI from /openapi.json?capability=<name>&audience=agent.
  4. Discover configuration progressively:
    • vllm-sr config schema --endpoint <management-origin>
    • add --section <path> or --surface <kind:name> for one contract;
    • use --full only when a complete schema is necessary.

The management origin normally serves /api/v1/**, /openapi.json, and /docs. The routed inference origin separately serves OpenAI-compatible requests such as /v1/chat/completions. Never infer one port from the other.

Use the safe control loop

For configuration changes, follow this exact order:

  1. Edit canonical YAML locally.
  2. Run local validation, then authoritative Router validation.
  3. Plan against current state without writing.
  4. Apply with the ETag returned by the plan.
  5. Confirm readiness and active configuration.
  6. Preview representative routing cases without model calls.
  7. Probe the Envoy-routed endpoint with real model calls and assertions.
  8. Run the appropriate routing workload or full model benchmark.
  9. Review replays, outcomes, latency, token use, cost, and failures.
  10. Keep the change only when its declared gate passes; otherwise apply the previous version or use config rollback.

Read configuration-loop.md when changing configuration or Recipes. Read evaluation-loop.md when testing or optimizing routing. Read deployment-loop.md for installation, serving, or model-pool changes.

Read the full file on GitHub · 79 lines

Files

What ships with it

4 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. today First seen · 79 lines · 93 tokens per session scan A e3dce6c5deea

Subscribe to this mod's changes

vllm-sr-agent-operations is a skill published in the GitHub repository vllm-project/semantic-router (5,741 stars, last pushed today), licensed Apache-2.0. It adds 93 tokens to every session and 891 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-09-12.

Related

Other skills, from other repositories

ecs-genai

Use whenever someone runs a GPU / ML / GenAI / LLM workload on Amazon ECS: GPU on ECS, ECS GPU-optimized AMI, g4dn/g5/g6/p4/p5 on ECS, which ECS launch type for GPU, Inferentia/Trainium/Neuron on ECS, distributed training, model inference or vLLM/Triton/TGI/Ray on ECS, Capacity Blocks, GPU sharing, ASG per GPU type.…

aws-samples/sample-apex-skills · 259 tokens

eks-genai

Use whenever someone is building, training, fine-tuning, or serving a generative AI / LLM workload on Amazon EKS — phrased as "GPU vs Trainium/Inferentia", "vLLM on EKS", "Ray Serve / KubeRay", "distributed training on EKS", "FSx for Lustre for ML", "Karpenter for GPU", "EFA / NCCL multi-node", "DCGM / Neuron…

aws-samples/sample-apex-skills · 275 tokens

serving-llms-vllm

Serves LLMs with high throughput using vLLM's PagedAttention and continuous batching. Use when deploying production LLM APIs, optimizing inference latency/throughput, or serving models with limited GPU memory. Supports OpenAI-compatible endpoints, quantization (GPTQ/AWQ/FP8), and tensor parallelism.

Orchestra-Research/AI-Research-SKILLs · 75 tokens

tensorrt-llm

High-throughput LLM inference on NVIDIA GPUs.

NousResearch/hermes-agent · 18 tokens

cli-eval

Create and run evaluation suites, watch live benchmark progress, view scorecards, compare model performance, and integrate eval runs with CI workflows from the CLI.

diegosouzapw/OmniRoute · 34 tokens

cli-backup-sync

Backup and restore OmniRoute data from the CLI. Trigger incremental snapshots, sync to cloud storage, manage backup schedules, and restore from archive files.

diegosouzapw/OmniRoute · 34 tokens