Official, NVIDIA-verified skills for AI agents.
π Docs: docs.nvidia.com/skills Β Β·Β πΊ Livestream: From Vulnerable to Verified Β Β·Β π Blog: NVIDIA Verified Agent Skills: Capability Governance 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. This repository is a catalog: skills are maintained in their respective product repos and mirrored here daily via an automated sync pipeline. We are making NVIDIA skills available publicly and building this catalog in the open; see the Roadmap for what is planned next.
Install NVIDIA skills with the default skills CLI flow:
npx skills add nvidia/skillsThe CLI runs through npx and prompts you to choose a skill and install destination. You do not need to clone this repo or copy skill folders by hand.
The skill is available the next time your agent loads skills and 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.
Use this when you already know the skill name and want to skip prompts.
npx skills add nvidia/skills --skill cuopt-numerical-optimization-api-python --yesReplace cuopt-numerical-optimization-api-python with any skill name from the Skill Catalog.
Use --agent to target a specific AI coding agent. These are common client targets; for the full list of supported clients, see the skills CLI Supported Agents table.
Claude Code
npx skills add nvidia/skills --skill cuopt-numerical-optimization-api-python --agent claude-codeCodex
npx skills add nvidia/skills --skill cuopt-numerical-optimization-api-python --agent codexCursor
npx skills add nvidia/skills --skill cuopt-numerical-optimization-api-python --agent cursorKiro
npx skills add nvidia/skills --skill cuopt-numerical-optimization-api-python --agent kiro-cliUse --agent more than once to install the same skill into multiple agents.
npx skills add nvidia/skills \
--skill cuopt-numerical-optimization-api-python \
--agent claude-code \
--agent codex \
--agent cursor \
--agent kiro-cliUse this when you want to see available NVIDIA skills before installing anything.
npx skills add nvidia/skills --listFor non-interactive installs, global installs, agent-specific installs, updates, removals, and fallback manual copying, see Advanced installation.
| Product | Description | Skills | Catalog | Source | Version |
|---|---|---|---|---|---|
| AIQ | NVIDIA AI-Q Blueprint - deploy local AI-Q services and run shallow or deep research workflows as agent skills. | 2 | skills/aiq-research/ |
Source | 66b009e Β· 2026-05-27 |
| cuOpt | GPU-accelerated optimization β vehicle routing, linear programming, quadratic programming, installation, server deployment, and developer tools. | 6 | skills/cuopt/ |
Source | d415bb6 Β· 2026-05-27 |
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 |
|---|---|---|---|---|
| AIQ | Issues | Discussions | Contributing | Security |
| cuOpt | Issues | Discussions | Contributing | Security |
For issues with this catalog repo itself (README, structure, listing a new product): open an issue here.
Every published skill ships with a detached OMS signature (skill.oms.sig). The sync pipeline drops any skill missing skill.oms.sig, skill-card.md, or evals.json before publishing, so anything in the catalog has all three artifacts.
Verify a skill against the NVIDIA trust anchor nv-agent-root-cert.pem:
pip install model-signing
model_signing verify certificate SKILL_DIR \
--signature SKILL_DIR/skill.oms.sig \
--certificate_chain nv-agent-root-cert.pem \
--ignore_unsigned_filesSee Verify Signed Agent Skills for signature layout, the trust pipeline, and policy options.
- β 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
- β Skill 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/ # Verified skills, mirrored daily from product repos
β βββ README.md # Install guidance for people browsing this folder directly
β βββ aiq-research/ # AIQ β deep/shallow research workflow
β βββ aiq-deploy/ # AIQ β local service deployment
β βββ cuopt/ # cuOpt skills (routing, optimization, server, install, β¦)
βββ components.d/ # Product registry β one file per component, teams onboard here
β βββ README.md # Schema and onboarding instructions
β βββ aiq.yml
β βββ cuopt.yml
β βββ β¦ # one file per registered product
βββ plugins/ # Packaged plugin distributions
β βββ nvidia-skills/ # Curated NVIDIA skills bundle (Claude Code, Codex)
βββ plugins.d/ # Plugin build registry β config for `build-plugins.py`
β βββ README.md
β βββ _defaults.yml
β βββ nvidia-skills.yml
βββ .claude-plugin/ # Claude Code marketplace metadata
β βββ marketplace.json
βββ .agents/plugins/ # Agent marketplace metadata (other clients)
β βββ marketplace.json
βββ docs/ # Long-form documentation (published via Fern)
β βββ README.md # How to build the docs locally
β βββ index.mdx
β βββ advanced-install.mdx
β βββ agent-skill-trust-pipeline.mdx
β βββ release-checklist.mdx
β βββ scanning-agent-skills.mdx
β βββ signing-agent-skills.mdx
β βββ skill-cards.mdx
βββ fern/ # Fern docs site configuration
βββ .github/
β βββ workflows/ # Sync pipeline, plugin validation, DCO check
β βββ scripts/ # regenerate-readme.sh, build-plugins.py
βββ nv-agent-root-cert.pem # Trust anchor for OMS signature verification
βββ CHANGELOG.md
βββ CONTRIBUTING.md # Contribution guidelines
βββ SECURITY.md # Security reporting policy
βββ CODE_OF_CONDUCT.md # Community code of conduct
βββ LICENSE # Apache 2.0 / CC BY 4.0
Skills are maintained in their respective product repos (see the Source column in the Skill Catalog) and automatically synced to this repo daily. Products only appear under skills/ after the sync pipeline confirms each skill carries skill.oms.sig, skill-card.md, and evals.json.
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).