DocsQuick StartAI News
AI NewsNVIDIA Lets AI Agents Train Robots
Industry News

NVIDIA Lets AI Agents Train Robots

2026-06-17T22:03:36.481Z

NVIDIA has packaged physical AI tool stacks such as Cosmos, Omniverse, and Isaac into an open-source skill set that can be called by Claude Code, Codex, and Cursor, enabling coding agents to generate data, run simulations, and train robots — even tasks like installing GPUs and cutting zip ties are now starting to be learned autonomously by robots.

NVIDIA Hands Robot Training Pipeline Over to Coding Agents

On June 17, at GTC Taipei, NVIDIA open-sourced an entire set of "Physical AI Agent Skills and Toolkits." To sum it up in one sentence: before, you used Cursor to write React components; now, Cursor can run robot simulations, generate training data, evaluate policy models—and even teach a robotic arm how to insert a GPU into a PCIe slot and cut zip-ties on a motherboard.

Yes, the headline from Ars Technica was not hyperbole: AI coding agents taught robots how to install GPUs and cut zip-ties. In its own demo, NVIDIA had Claude Code orchestrate Isaac Sim to train a complete "install GPU" policy. The symbolism here is even deeper than the technical meaning—Jensen Huang is letting AI train robots to assemble the next generation of servers that will run AI. A perfect loop.

What Exactly Is This Release

Don’t get confused by marketing terms like "Physical AI Agent Skills." It boils down to two layers:

First layer: Tooling. NVIDIA packaged its entire physical AI stack—including the Cosmos world model, Omniverse simulation library, Isaac robotics learning framework, Metropolis vision AI, Alpamayo driver assistance, and Jetson edge platform—into tool interfaces callable by coding agents. In other words, instead of engineers manually writing Python scripts, agents like Claude Code, Codex, and Cursor can directly make function calls.

Second layer: Skills. Tools are atomic capabilities; skills are workflows. NVIDIA turned typical development processes—like "set up a warehouse sorting scenario," "generate 100,000 synthetic trajectories for a certain grasping task," "evaluate a VLA model’s robustness under 50 lighting conditions"—into SOPs that agents can repeatedly execute, with explicit instructions: which tool to use first, what intermediate product to generate second, and how to validate in the third step.

The resources are on GitHub and skills.sh, and can be used with any coding agent. This is arguably more important than the tools themselves: NVIDIA isn’t pushing its own agent, but acknowledges the market dominance of Anthropic, OpenAI, and Cursor, and has made a “neutral adaptation.”

Why Now, Why Agents

Anyone working in robotics knows the paradox: the bottleneck in simulation training has never been compute power—it’s people.

In a typical robotics learning project, researchers spend roughly: 30% in USD building scenes, tuning materials, and placing lights; 30% tuning domain randomization parameters and writing reward functions; 20% running rollouts and checking tensorboard; and the remaining 20% actually modifying algorithms. Cosmos and Isaac Lab have long been powerful enough, but every new task still requires a PhD to spend two weeks tinkering—this doesn’t scale.

In an earlier interview, NVIDIA VP of Robotics Deepu Talla put it bluntly: the robotics industry is still waiting for its ChatGPT moment, and the biggest bottleneck delaying a general brain is not the model, it’s the data. Where does data come from? Large-scale simulation. Who runs large-scale simulation? Humans can’t keep up—it has to be agents.

This is the real logic behind the release—use coding agents to automate the data production–training–evaluation pipeline. In the past year or two, Anthropic and OpenAI have improved agent reliability in software engineering to a usable level. NVIDIA has translated its SDK into a language agents understand, effectively turning general-purpose agents into robotics research assistants.

Installing GPUs and Cutting Zip-Ties: Technical Depth of Two Demos

Let’s return to those two tasks and see what the agent actually did.

Installing a GPU—the difficulty isn’t in grasping (a robotic arm picking up a graphics card is basic skill) but in precise insertion alignment. PCIe slots have tolerances of only fractions of a millimeter; insert it the wrong way and it’s ruined, apply too much force and you snap the slot. Traditionally, you’d manually collect hundreds of human demonstrations and then run domain randomization for days.

In the new workflow, the agent’s steps look like: call Isaac Sim to create a data center cabinet scene → call Cosmos to generate geometric variants for different GPU and motherboard models → call Isaac Lab to run distributed PPO training for the grasp-and-insert policy → call evaluation skills to run 1,000 randomized tests → feed failure cases back for the agent to retune parameters and retrain. The human engineer might only need to say, “Train a policy to install an H100, target success rate 95%.”

Cutting zip-ties is even more interesting. This is a classic deformable object manipulation problem: zip-ties are thin, flexible, and the contact point between scissors and zip-tie is almost invisible. Such tasks used to be top-tier conference paper material in robotics. Having an agent solve it end-to-end isn’t realistic, but having the agent break it into simulatable subproblems and generate hundreds of thousands of physically simulated trajectories—that’s something agents can now do.

Talla admits two major weaknesses remain: fine object manipulation and safety in human-robot coexistence. This release isn’t saying the problems are solved—it’s saying research iteration speed can be boosted by an order of magnitude.

Compared to Competitors, How Strong Is NVIDIA’s Move

Looking horizontally, the physical AI track currently has no real competitor. Google DeepMind has RT-2 and Gemini Robotics, but focuses on models; companies like Figure and 1X have their own data loops but don’t open them; Amazon’s DeepFleet is in warehouse logistics, not training pipelines.

NVIDIA’s approach here is classic “the shovel seller keeps selling more advanced shovels”:

  • In the early days, they sold GPUs to train robots
  • Later, they sold Omniverse + Isaac to build simulations
  • Now, they’ve agentified the simulations themselves, so your agents can orchestrate simulations that run on their GPUs

Commercially flawless. But there’s a cautionary point: the Cosmos world model itself is still maturing. Talla says Cosmos is “a collection of multiple models with varying levels of maturity,” and some clients are waiting for the next version in 3–6 months. Exposing an evolving world model as an agent tool means agents will encounter plenty of “unstable tool behavior” situations—this is a true test of agent robustness.

Another detail: NVIDIA’s Osmo software callable by agents is essentially a cross-cluster ML orchestration platform. The significance of Claude Code calling it is: the agent is no longer just writing scripts on your laptop—it can directly request hundreds of H100s to run distributed training. This raises entirely different-scale questions about agent permission boundaries and cost control. NVIDIA hasn’t disclosed much governance detail yet, but sooner or later it’ll need to.

Who’s Already Using It

The list is long; here are some with useful info:

  • Robotics hardware: 1X, Agility Robotics, Universal Robots, NEURA Robotics, Skild AI, FieldAI—covers top-tier humanoid and industrial robotic arms
  • Industrial software: Siemens, Dassault, Cadence, Synopsys—EDA and CAD giants all present
  • Manufacturing: Foxconn, Pegatron, TSMC, SK Hynix—SK Hynix even uses Omniverse to build digital twins of semiconductor fabs

This customer structure shows: NVIDIA’s robotics story isn’t betting on consumer-facing humanoid robots, but on automation upgrades in manufacturing, semiconductor plants, and automotive factories. These scenarios have clear task boundaries and calculable ROI, making them the first places where the agent + simulation toolchain can close the commercial loop.

Developer Perspective: Is It Worth Adopting Now?

If you already use Isaac Sim / Lab, it’s highly recommended to integrate these skills. The most immediate benefit is simulation scene setup time—according to NVIDIA’s own data, Isaac Lab-Arena in this new workflow takes 1.3 days of training on a single GPU, but only 12.5 hours on 4 GPUs. Throughput improvement makes iteration efficiency obviously faster.

If you just want to try an agent orchestrating robot training, you can pick a simple skill from skills.sh and run it with Claude Code. The barrier is lower than you think because skills are just Markdown descriptions + tool call lists; agents can execute them directly.

But here are a few pitfalls to note:

  • Compute budget must be clear: letting an agent run simulations automatically means each decision loop could burn hours of GPU time. Test in a sandbox with a limited budget first.
  • Be cautious with Cosmos calls: the world model is still rapidly iterating; the interfaces agents call could change next month.
  • Don’t fully outsource evaluation: agent training is fine, but humans must set success criteria and safety constraints, or agents may engage in reward hacking in unexpected ways.

Incidentally, OpenAI Hub has made direct compatibility for Claude, GPT, and Gemini coding agents. For domestic developers who want Claude Code to run NVIDIA skills, this removes the overseas network layer hassle.

A Bigger Judgment

What looks like a tool upgrade is essentially acknowledging a new development paradigm: physical AI developers are no longer "people who can write PyTorch," but "people who can command agents."

This paradigm shift is akin to when cloud-native replaced physical server ops—the skill stack is replaced wholesale. Three years from now, when hiring a robotics researcher, HR will likely write in the JD: familiar with using Claude Code / Cursor to orchestrate Isaac Sim workflows. Sounds absurd, but after GTC Taipei this week, the path is clear.

Talla’s statement that “robot mass deployment is still far away” is true, but NVIDIA clearly isn’t planning to wait idly. Their plan: first increase research iteration speed by an order of magnitude; once the data flywheel spins, the general brain will naturally emerge. This is NVIDIA-style patience—as long as they hold compute, tools, and ecosystem, time is always on their side.

References

Related Articles

View All

Contact Us

We usually reply quickly during business hours

Scan WeChat

Support: Hub Assistant

WeChat ID: