Borrowing it
Nothing to install: this file belongs to maoxx241/vllm-ascend-workspace. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/maoxx241/vllm-ascend-workspace/main/.agents/skills/vllm-ascend-serving/SKILL.mdgit clone --depth 1 https://github.com/maoxx241/vllm-ascend-workspaceWrote 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.
[](https://agentmods.dev/skills/maoxx241/vllm-ascend-workspace/vllm-ascend-serving)<a href="https://agentmods.dev/skills/maoxx241/vllm-ascend-workspace/vllm-ascend-serving"><img src="https://agentmods.dev/badge/skills/maoxx241/vllm-ascend-workspace/vllm-ascend-serving/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.
<a href="https://agentmods.dev/skills/maoxx241/vllm-ascend-workspace/vllm-ascend-serving"><img src="https://agentmods.dev/badge/skills/maoxx241/vllm-ascend-workspace/vllm-ascend-serving.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Excessive Agency · line 44 Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00084 | $0.03410 |
| Opus 5 | $0.00042 | $0.01705 |
| Sonnet 5 | $0.00017 | $0.00682 |
| Haiku 4.5 | $0.00008 | $0.00341 |
Grade A, and why
vllm-ascend-serving 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 7d 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.
How it starts
The opening of the file, as written. The whole thing — 260 lines — stays where its author put it; the contents beside it link to each section on GitHub.
vLLM Ascend Serving
Manage the lifecycle of a single-node colocated vllm-ascend online service on an isolated VAWS session container.
The optional prepared-runtime MCP has a separate
binding/execution lifecycle. Its bindings are not legacy session records and
must not be fed to serve_start.py --session-id. In that mode use the
coordinator's request/preflight/activate/heartbeat/release sequence and existing
remote-dev job tools, with pinned source, declared service ports and a new
service process. The legacy wrappers here are not yet transparent adapters for
pool bindings. Do not allocate a second local NPU lease for the pool run.
Remote substrate rule: use .remote-dev remote tools for ad hoc remote
read/edit/bash/search/patch work around a service. Use this skill for the
domain service lifecycle contract and keep its scripts as the compatibility
backend for managed VAWS sessions.
This skill takes structured parameters, handles all SSH escaping and remote execution internally, and returns machine-readable JSON. The agent never needs to construct raw shell commands for service management.
Use this skill when
- the user asks to start / launch / pull up a vllm-ascend service in a managed session
- the user asks to restart or relaunch a service (possibly with changed flags or env)
- the user asks to check if a running service is alive / ready
- the user asks to stop a running service
- another skill needs to start a service (e.g.
ascend-memory-profiling)
Do not use this skill when
- the task is adding, verifying, repairing, or removing a machine (use
machine-management) - the task is syncing code to the remote container (use
remote-code-parity) - the task is running benchmarks (a separate skill's responsibility)
- the task is offline inference
- no session exists yet for the target (use
session-managementfirst)
Critical rules
- Serving is session-only.
serve_start.py,serve_status.py, andserve_stop.pytake an optional--session-id <id>/--session-file <path>. When both are omitted, the session is auto-resolved by walking up from the current working directory to the nearest.vaws-local/current-session.jsonworktree binding — running from inside a session worktree needs zero target arguments. If no binding is found, the command fails fast with instructions to pass--session-idor create a session withsession-management'ssession_create.py. startautomatically runsremote-code-paritybefore launching. If parity fails, start is blocked.statusandstopdo not require parity.- Each session reads and writes only
.vaws-local/sessions/<id>/serving.jsonand never stops another session's service. start/stopoperations for the same session are serialized with a serving lock; different sessions remain independent.- Once a remote PID is launched,
serve_start.pywritesserving.jsonwithstatus=startingbefore health probing soserve_stop.pycan clean up even if readiness later fails. - Service ports are always allocated and released through the session lease mechanism — there is no ad-hoc free-port scanning.
- Managed serving and relaunch require a nonempty live NPU lease matching the session snapshot before touching an existing service. Free cards are never selected as a fallback for an empty lease, and a stale
session.jsonis not trusted after its live lease was released. - All remote execution goes through the scripts — never construct raw SSH commands for serving.
- Keep local runtime state under
.vaws-local/sessions/<id>/. - Progress on
stderras__VAWS_SERVING_PROGRESS__=<json>, final result onstdoutas JSON. - With a unified workspace alias, new runtime directories use
.vaws-runtime/serving/<alias>/<timestamp>/and the service receivesVAWS_AGENT_ID,VAWS_AGENT_ALIAS, andVAWS_PROJECT_ALIAS. Without an alias, preserve the legacy layout.
What ships with it
10 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.
- presets/dsv4-flash.json 2.0 KB
- references/acceptance.md 10 KB
- references/behavior.md 11 KB
- references/command-recipes.md 7.2 KB
- scripts/_common.py 12 KB runs code
- scripts/serve_probe_npus.py 2.7 KB runs code
- scripts/serve_start.py 54 KB runs code
- scripts/serve_status.py 5.6 KB runs code
- scripts/serve_stop.py 7.4 KB runs code
- tests/test_serving_identity.py 28 KB runs code
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.
- 7d ago Changed · +56 lines 35f44f42ce52
- 11d ago First seen · 204 lines · 84 tokens per session scan A 0c61fd42b72e
vllm-ascend-serving is a skill published in the GitHub repository maoxx241/vllm-ascend-workspace (36 stars, last pushed 6d ago), licensed MIT. It adds 84 tokens to every session and 3,410 once invoked, about $0.0004 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.
Other skills, from other repositories
tensorrt-llm
High-throughput LLM inference on NVIDIA GPUs.
google-cloud-solution-guided-gke-ai-migration
Guides the migration of existing AI workloads (Cloud Run, Gemini API, Gemini Enterprise Agent Platform) to self-hosted GKE inference using gcloud and kubectl. Use when the user has an existing AI inference workload (on Cloud Run, the Gemini API, Gemini Enterprise Agent Platform, or a custom VM) and wants to move it to…
agent-platform-tuning
Agent Platform Model Tuning. Use when you need to fine-tune open models or Gemini models using Agent Platform infrastructure. Don't use for model training outside Agent Platform, model deployment to endpoints (use agent-platform-deploy), or managing serving endpoints (use agent-platform-endpoint-management).
gke-inference
Deploys and optimizes AI/ML inference workloads on GKE, using GPUs, TPUs, and model servers. Use when deploying GKE inference servers, configuring GKE GPU resources for inference, or deploying LLMs on GKE. Don't use for generic batch jobs or HPC task queues (use gke-batch-hpc instead).
agent-platform-endpoint-management
Manages Agent Platform serving endpoints. Use when you need to create, list, describe, update, or delete serving endpoints for model deployment on Agent Platform. Also use when troubleshooting endpoint permission, quota, or resource busy errors. Don't use for deploying models to endpoints or for running model…
modal
Modal is a serverless cloud platform for running Python on demand, including on-demand GPUs. Use when deploying or serving AI/ML models, running GPU-accelerated workloads (training, fine-tuning, inference), serving web endpoints, scheduling batch jobs, or scaling Python code to cloud containers with the Modal SDK.