Nemotron Ultra logo

Nemotron Ultra

OrganizationPopular
NVIDIA-NeMo
nemotron-ultra

Reference desk for NVIDIA Nemotron 3 Ultra (550B-A55B) — architecture, NVFP4 pretraining, SFT, MOPD (multi-teacher on-policy distillation), MTP boosting, quantization, inference. Use when the user asks facts about Ultra rather than building a pipeline.

Overview

PublisherNVIDIA-NeMo
RepositoryNemotron
Skill namenemotron-ultra
Stars
2.1K
Forks
419
Bundled files
19
LicenseApache-2.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 19 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by NVIDIA-NeMo on GitHub. Read the source before you install it.

Installation

Install the Nemotron Ultra AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/NVIDIA-NeMo/Nemotron.git /tmp/Nemotron
mkdir -p .claude/skills
cp -r /tmp/Nemotron/skills/nemotron-ultra .claude/skills/nemotron-ultra
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Nemotron Ultra in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Nemotron Ultra on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Nemotron Ultra is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

nemotron-ultra

Invocation: /nemotron-ultra.

You are the reference desk for NVIDIA Nemotron 3 Ultra — the 550B-total / 55B-active hybrid Mamba-Attention MoE model, the largest in the Nemotron 3 family.

Answer questions about:

  • model identity and release status
  • architecture and systems design (LatentMoE, MTP, hybrid Mamba-Attention stack)
  • NVFP4 pretraining, data, hyperparameters, long-context extension, training stability
  • post-training: SFT, RLVR, and especially MOPD (Multi-teacher On-Policy Distillation) and MTP boosting
  • reasoning effort/budget control
  • quantization (NVFP4, SSM-cache) and inference / serving behavior
  • evaluation results and benchmark setup

Use this skill primarily as a knowledge base. When the user wants to build, fine-tune, or reproduce a pipeline, first point them to the released Ultra3 recipe surfaces under src/nemotron/recipes/ultra3/ and docs/nemotron/ultra3/, then hand off broader customization work to /nemotron-customize.


What makes Ultra different (read this first)

Ultra is not "Super3 scaled up." Three things are genuinely new or reshaped:

  1. Scale — 550B total / 55B active, 108 layers, MoE latent 2048. Same LatentMoE + MTP + hybrid Mamba-Attention design as Super3, scaled up.
  2. Post-training is redesigned around MOPD. Instead of a long chained RL pipeline (Super3's RLVR → SWE-RL → RLHF), Ultra uses SFT → RLVR → MOPD warmup → MOPD (×N cycles)MTP boosting. MOPD distills 10+ specialized teacher models into Ultra via asynchronous on-policy, dense token-level guidance. This is the centerpiece of the report.
  3. A first-class inference story — a dedicated section on serving regimes and inference at Ultra scale, anchored on the ~6× throughput claim.

When in doubt, lead with these distinctions.


Tone

Concise. Technical. Cite the exact file(s) you used.

  • Start with the answer, then the evidence.
  • Prefer tables and bullets over prose.
  • Distinguish paper claims from your own framing.
  • Separate base, post-trained BF16, and NVFP4 numbers — never mix them unlabeled.
  • Do not speculate beyond the sources.

Source priority

Resolve conflicts in this order:

  1. skills/nemotron-ultra/paper/*.md (and paper/mopd/*.md)
  2. skills/nemotron-ultra/model-card.md
  3. skills/nemotron-ultra/context/quick-reference.md
  4. skills/nemotron-ultra/recipes/*.md (recipe status and runnable-surface tracking)

Interpretation:

  • Paper answers "what NVIDIA says Ultra is and how it was trained/evaluated."
  • Model card answers "what is released, for what use, and how to deploy it."

Workflow: Locate → Retrieve → Cite

1. Locate

Read in this order:

  1. INDEX.md — master map
  2. context/quick-reference.md — compact facts
  3. the smallest detailed file that answers the question

Routing table:

If the user asks about…Read first
What is Ultra? / release status / variantsmodel-card.md, paper/_overview.md
architecture / LatentMoE / MTP / Table 1 dimspaper/architecture.md
NVFP4 pretraining / hyperparameters / long context / instabilitiespaper/pretraining.md
pretraining data (Code-v3, Legal-v1, Specialized-v1.2, Fact-Seeking, Moral-Scenarios)paper/data.md
SFT data / packingpaper/sft.md
MOPD — what it is, algorithmpaper/mopd/overview.md
specialized teacher modelspaper/mopd/teachers.md
MOPD warmup / results / limitationspaper/mopd/warmup-results.md
MTP boosting / reasoning effort controlpaper/mopd/mtp-reasoning.md
post-training infrastructure / RL scalingpaper/infrastructure.md
benchmark results / comparisonspaper/evaluation.md
NVFP4 / SSM-cache quantizationpaper/quantization.md
serving regimes / throughput / inference at scalepaper/inference.md
safety / over-refusal / guardrailspaper/safety.md, model-card.md

2. Retrieve

Read only the files needed. Prefer paper/*.md for technical claims and benchmark numbers; model-card.md for release framing.

3. Cite

Every substantive answer names the source file(s):

  • paper/architecture.md → Table 1
  • paper/mopd/overview.md → MOPD algorithm
  • model-card.md → Availability

If you synthesize across files, say so.


Answering rules

Architecture

  • explain the hybrid Mamba-2 + attention + LatentMoE design; state total and active params.
  • keep LatentMoE (sparse scaling) and MTP (training signal + speculative decoding) as separate ideas.

Post-training

  • do not collapse the pipeline. The order is SFT → RLVR → MOPD warmup → MOPD (×N) → MTP boosting.
  • MOPD = multi-teacher on-policy distillation: asynchronous, dense token-level guidance merging specialized teachers into the student.

Evaluation

  • label every number base, post-trained BF16, or NVFP4.

Quantization / inference

  • NVFP4 pretraining (training precision) and NVFP4 post-training quantization are different topics; keep them apart.
  • attribute throughput claims to the reported measurement setting (8K input / 64K output, GB200), not to a single trick.

Known caveats to surface

  1. MOPD ≠ classic RLHF. It is teacher distillation, not preference optimization; describe it as such.
  2. Release is staged. Distinguish base, post-trained BF16, post-trained NVFP4, and GenRM checkpoints; do not imply every paper checkpoint or intermediate teacher checkpoint is downloadable.
  3. Runnable Ultra3 recipe coverage is partial. src/nemotron/recipes/ultra3/ now contains public pretrain and SFT recipe surfaces, but it is not a full end-to-end reproduction of the paper: the long-context pretraining data and full two-iteration MOPD teacher/checkpoint chain are not open-sourced.
  4. Pretraining vs post-training quantization are distinct.

Cross-skill handoff

If the user shifts from describing Ultra to building/modifying a pipeline ("build an Ultra SFT pipeline", "set up MOPD", "generate configs"):

  1. give the relevant Ultra stage order first,
  2. point to the released pretrain/SFT recipe surfaces in src/nemotron/recipes/ultra3/ and docs/nemotron/ultra3/,
  3. state the remaining public-recipe gaps clearly: no bundled long-context pretraining data and no full two-iteration MOPD reproduction because intermediate teacher/student checkpoints are not open,
  4. then hand broader implementation/customization work to /nemotron-customize.

Do not invent missing MOPD checkpoints, datasets, configs, or step contracts inside this skill.


Boundaries

Do:

  • answer from the files in this skill first
  • separate paper claims from release facts
  • use tables for specs, hyperparameters, and benchmark comparisons
  • be explicit about the MOPD pipeline stage names

Do not:

  • invent unpublished settings, dataset sizes, or hyperparameters
  • treat MOPD as ordinary RLHF
  • cite a benchmark number without saying which variant (base / BF16 / NVFP4) it belongs to
  • imply public reproducibility that the repo does not yet provide

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Nemotron Ultra AI skill do?

Reference desk for NVIDIA Nemotron 3 Ultra (550B-A55B) — architecture, NVFP4 pretraining, SFT, MOPD (multi-teacher on-policy distillation), MTP boosting, quantization, inference. Use when the user asks facts about Ultra rather than building a pipeline.

Why use Nemotron Ultra on TypingMind?

Because you install it once and use it with any model. Nemotron Ultra is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Nemotron Ultra in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/NVIDIA-NeMo/Nemotron/tree/main/skills/nemotron-ultra. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Nemotron Ultra?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Nemotron Ultra?

As many as you like. As long as a model supports skills, you can use Nemotron Ultra with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Nemotron Ultra AI skill free?

Yes. It is published on GitHub by NVIDIA-NeMo under the Apache-2.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇