Official, NVIDIA-verified skills for AI agents.
Skills are portable instruction sets that teach AI agents how to use NVIDIA CUDA-X libraries, AI Blueprints, and platform tools correctly. From solving vehicle routing problems with cuOpt, to deploying RAG pipelines, to onboarding models into TensorRT-LLM, every skill listed here is published and verified by NVIDIA.
This repository is a catalog — skills are maintained in their respective product repos and mirrored here daily via an automated sync pipeline. It follows the open Agent Skills specification, making skills compatible with any AI agent or framework that supports the standard.
We are building this in the open. The catalog, sync pipeline, and roadmap are public so the community can see what we ship, what we plan to ship, and how we secure skills for use. As we add signing, scanning, and evaluation, each improvement lands here incrementally.
Browse the Available Skills table below, then install directly from this repo — every skill is mirrored here under skills/:
# Example: install the cuOpt LP/MILP skill
git clone --depth 1 --filter=blob:none --sparse https://github.com/NVIDIA/skills.git
cd skills && git sparse-checkout set skills/cuopt/cuopt-lp-milp-api-python
cp -r skills/cuopt/cuopt-lp-milp-api-python ~/.claude/skills/That's it — the skill activates automatically the next time your agent encounters a relevant task. For example, ask your agent to "solve a linear programming problem with cuOpt" and the skill guides it through the cuOpt Python API.
| Agent / Framework | Installation |
|---|---|
| Claude Code | Copy the skill directory into ~/.claude/skills/ |
| Codex | Copy the skill directory into your project's .codex/skills/ folder |
| Cursor | Copy the skill directory into your project's .cursor/skills/ folder |
| Other agents | Copy the skill directory into your agent's skills folder |
| Product | Description | Skills | Catalog | Source |
|---|---|---|---|---|
| CUDA-Q | CUDA Quantum — onboarding guide for installation, test programs, GPU simulation, QPU hardware, and quantum applications. | 1 | skills/CUDA-Q/ |
Source |
| cuOpt | GPU-accelerated optimization — vehicle routing, linear programming, quadratic programming, installation, server deployment, and developer tools. | 19 | skills/cuopt/ |
Source |
| TensorRT-LLM | LLM inference optimization — model onboarding, performance analysis and optimization, kernel writing, CI diagnostics, code contribution, and codebase exploration. | 20 | skills/TensorRT-LLM/ |
Source |
| Model-Optimizer | Model optimization — quantization, sparsity, and distillation for efficient inference. | 5 | skills/Model-Optimizer/ |
Source |
| Megatron-Core | Large-scale distributed training — model parallelism, pipeline parallelism, and mixed precision. | 6 | skills/Megatron-Core/ |
Source |
| Megatron-Bridge | Bridge between NeMo and Megatron — data processing, model conversion, and training utilities. | 9 | skills/Megatron-Bridge/ |
Source |
| Nemotron Voice Agent | Real-time conversational AI — deploy speech-to-speech voice agents on Workstation, Jetson Thor, or Cloud NIMs. | 1 | skills/nemotron-voice-agent/ |
Source |
| NeMo Gym | RL training environments — add benchmarks, resources servers, agent wiring, and reward profiling. | 1 | skills/NeMo-Gym/ |
Source |
| NeMo Evaluator | LLM evaluation — launch evaluations, access MLflow results, NeMo Evaluator Launcher assistant, and bring-your-own benchmarks. | 4 | skills/NeMo-Evaluator/ |
Source |
| RAG Blueprint | RAG pipeline — deploy, configure, troubleshoot, and manage retrieval augmented generation with Docker Compose or Helm. | 1 | skills/rag/ |
Source |
For skill-related issues, feature requests, new skill ideas, discussions, and contributions — use the source repo for the relevant product:
| Product | Issues | Discussions | Contributing | Security |
|---|---|---|---|---|
| CUDA-Q | Issues | Discussions | Contributing | Security |
| cuOpt | Issues | Discussions | Contributing | Security |
| TensorRT-LLM | Issues | Discussions | Contributing | Security |
| Model-Optimizer | Issues | — | Contributing | Security |
| Megatron-Core | Issues | Discussions | Contributing | — |
| Megatron-Bridge | Issues | Discussions | Contributing | — |
| Nemotron Voice Agent | Issues | Discussions | Contributing | Security |
| NeMo Gym | Issues | Discussions | Contributing | Security |
| NeMo Evaluator | Issues | Discussions | Contributing | Security |
| RAG Blueprint | Issues | Discussions | Contributing | Security |
For issues with this catalog repo itself (README, structure, listing a new product): open an issue here.
- ✅ Public skills catalog with NVIDIA-verified skills across multiple products
- ✅ Automated sync pipeline with skills mirrored from product repos daily
- ✅ Security scanning for all published skills covering instruction safety and supply-chain integrity
- 🔲 Skills signing so every published skill carries a verifiable NVIDIA signature
- 🔲 Skills universal evaluation criteria and task-specific criteria
- 🔲 Skills Card with machine-readable metadata for identity, provenance, quality, and behavioral boundaries
- 🔲 Compliance gates before external publication
- 🔲 Syndication to external marketplaces and MCP hubs
NVIDIA/skills/
├── skills/ # All skills, mirrored daily from product repos
│ ├── cuopt/ # cuOpt skills (19)
│ ├── TensorRT-LLM/ # TensorRT-LLM skills (20)
│ ├── Megatron-Bridge/ # Megatron-Bridge skills (9)
│ ├── Model-Optimizer/ # Model-Optimizer skills (5)
│ ├── NeMo-Evaluator/ # NeMo Evaluator skills
│ ├── NeMo-Evaluator-Launcher/
│ ├── NeMo-Gym/ # NeMo Gym skills
│ ├── CUDA-Q/ # CUDA-Q skills
│ ├── Megatron-Core/ # Megatron-Core skills
│ ├── nemotron-voice-agent/ # Nemotron Voice Agent skills
│ └── ...
├── components.yml # Product registry — teams onboard here
├── .github/workflows/ # Automated sync pipeline
├── CONTRIBUTING.md # Contribution guidelines
├── SECURITY.md # Security reporting policy
├── CODE_OF_CONDUCT.md # Community code of conduct
└── LICENSE # Apache 2.0
Skills are maintained in their respective product repos (see the Source column in Available Skills) and automatically synced to this repo daily.
This repository adheres to the Agent Skills specification:
- Skills are portable directories with a
SKILL.mdfile at their root. - Metadata uses YAML frontmatter with required
nameanddescriptionfields. - Skills follow a progressive disclosure model — lightweight metadata loads at startup, full instructions load on activation.
- Validate your skill using the
skills-refreference library.
This project is dual-licensed under the Apache License 2.0 and Creative Commons Attribution 4.0 International (CC BY 4.0).