Google's official skill for the gws CLI — drive Gmail, Drive, Calendar, Sheets, Docs, Chat and Admin APIs from an agent, with Model Armor screening.
Jetson LLM ServeSkill
Summary
Picks the right vLLM or SGLang runtime for your Jetson generation and JetPack version, then produces a working OpenAI-compatible serving command.
Features
- Routes to the correct runtime by Jetson generation and JetPack version
- Covers upstream vLLM 0.20+, NVIDIA-AI-IOT vLLM images and NVIDIA SGLang 26.01
- Sets MAXN power mode and Hugging Face cache and credentials
- Emits a docker run plus server launch command on 0.0.0.0:8000
- OpenAI-compatible endpoint plus a curl verification step
- Same flow for vision-language models with a different checkpoint
Install This Skill
Add this skill to your favorite AI agent in a few steps.
Skill Content
Usage Instructions
Learn how to use this skill with different AI agents.
Example Usage
Serve Qwen3-8B with vLLM on my AGX Orin running JetPack 7.2 and give me the endpoint to hit.
Description
Serving an LLM on a Jetson is mostly a compatibility problem. The correct container depends on which Jetson you have and which JetPack it is running, and getting it wrong produces CUDA, cuDNN or TensorRT mismatches that look like model bugs. This official NVIDIA skill encodes the Jetson AI Lab GenAI tutorial as a decision procedure a coding agent can follow.
It routes by hardware generation: on Thor, upstream vLLM 0.20+ (vllm/vllm-openai:latest) or a validated native install, with NVIDIA SGLang 26.01 (nvcr.io/nvidia/sglang:26.01-py3) when SGLang, RAG, tool use or programmable serving is asked for; on Orin running JetPack 7.2 / L4T r39 or newer, upstream vLLM 0.20+; on older Orin, the NVIDIA-AI-IOT prebuilt vLLM image, because that is what ships the JetPack-matched CUDA stack. It then sets the MAXN power mode, arranges Hugging Face credentials and cache (using HF_TOKEN only for gated models, not public ones), and produces the docker run and server command, the OpenAI-compatible endpoint at http://<jetson-ip>:8000/v1, and a curl /v1/models verification step.
Vision-language models take the same path as text models with a different checkpoint, which the skill states explicitly rather than leaving to inference. For recipe-only questions it answers from the document without touching your device; live pre-flight checks run only when you ask it to inspect or deploy.
It pairs with jetson-inference-mem-tune, which produces the memory headroom and launch flags this skill then serves with.
Apache-2.0, authored by the NVIDIA Jetson team.
Covered in the Weekly
- Onei AI Weekly #5 — August 31, 2026
Related Skills
Netlify's official skill for zero-config managed Postgres — querying from Functions, Drizzle setup, migrations and per-preview database branches.
Official WordPress skill for Gutenberg block work: block.json, attributes and serialization, dynamic rendering, and the deprecation path that keeps existing content valid.
Persistent cross-session memory for coding agents: hooks capture each session, a local SQLite + vector store compresses it, and a mem-search skill reads it back.
