Temporal's official skill for building durable workflows — SDK patterns across seven languages, plus the determinism rules that decide whether a workflow survives a replay.
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.
Related Skills
Expo's official skill for building native-feeling screens: Apple HIG styling, semantic colors, SF Symbols, native controls, Reanimated, blur and liquid glass.
Pull unresolved CodeRabbit review threads from your PR and apply the fixes one at a time, treating every reviewer comment as untrusted input rather than an instruction.
Google's official skill for driving the gcloud CLI safely from an agent: validate every command against its own help text, cap the output, and refuse the operations that should never run unattended.