A collection of skills for deploying and invoking vLLM. This project follows the anthropics/skills template format.
This repository provides modular, reusable agent skills required to operate and invoke vLLM, following the Anthropics SKILL.md specification. Each skill is a self-contained directory implementing automation, scripts, and metadata for a specific operational task.
All skills adhere to the Anthropics skills template and can be copied into a Claude Code skills directory for use.
vllm-skills/
├── skills/
│ ├── vllm-deploy-simple/ # Local deployment skill
│ │ ├── SKILL.md # Skill documentation (YAML frontmatter + body)
│ │ └── scripts/ # Deployment utilities
│ └── vllm-deploy-docker/ # Docker deployment skill
│ └── SKILL.md # Skill documentation (YAML frontmatter + body)
└── README.md
Deploy vLLM as an online service with OpenAI-compatible API locally.
Features:
- Auto detect hardware type and install vllm
- Local deployment with
vllm serve - Test and management utilities
Quick Start for Claude Code:
-
Clone the repository
git clone https://github.com/vllm-project/vllm-skills.git cd vllm-skills -
Copy skills needed to your Claude Code skills directory
Copy the skills to global skill folder:
cp -r skills/vllm-deploy-simple ~/.claude/skills/Or copy to the project skill folder:
cp -r skills/vllm-deploy-simple .claude/skills/
-
Use the skills (with sample user prompts):
Once installed, you can use the skill in Claude Code like:
/vllm-deploy-simpleOr with natural language:
Deploy vLLM with Qwen2.5-1.5B-Instruct on port 8000Install and start a vLLM server using the vllm-deploy-simple skillSet up vLLM in a virtual environment at current folder with Qwen2.5-1.5B-Instruct
See vLLM documentation for the full list.
This project follows the anthropics/skills template. When adding new skills:
- Create a new directory under
skills/(e.g.,skills/your-skill/) - Add a
SKILL.mdfile with YAML frontmatter:--- name: your-skill description: Brief description of what this skill does ---
- Add optional
scripts/,references/, andassets/directories - Update this README with your skill documentation
Licensed under the Apache License 2.0. See LICENSE.