惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

有赞技术团队
有赞技术团队
G
Google Developers Blog
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
J
Java Code Geeks
P
Proofpoint News Feed
V
Visual Studio Blog
爱范儿
爱范儿
The Cloudflare Blog
博客园 - 叶小钗
V
V2EX
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
博客园 - 聂微东
H
Help Net Security
B
Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 【当耐特】
量子位
宝玉的分享
宝玉的分享
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Nvidia wants enterprises to run agents safely. NemoClaw i...
Andrew Kew · 2026-06-23 · via DEV Community
Cover image for Nvidia wants enterprises to run agents safely. NemoClaw is how.

Andrew Kew

Getting enterprises to adopt autonomous agents isn't a model problem — it's a governance problem. That's the gap NemoClaw is built to close.

NemoClaw is Nvidia's collection of open blueprints for taking agents from prototype to governed production deployment. It ships today for OpenClaw and Hermes. Getting started is a one-liner:

curl -fsSL https://www.nvidia.com/nemoclaw.sh | bash

What NemoClaw actually is

Three components under one install path:

  • OpenShell — Nvidia's runtime policy layer. Every session is sandboxed, every resource metered, every permission verified before execution. Think browser-style isolation, applied to agentic workflows.
  • Nemotron models — Nvidia's open model family, available locally or routed alongside frontier models (Claude, GPT, etc.) under defined privacy controls.
  • NeMo Agent Toolkit v1.7 — the workflow layer: functions, memory, MCP + A2A clients, retrieval, embedders. The building blocks agents need to actually do work.

The blueprints wire these together into production-ready setups. OpenClaw + NemoClaw adds OpenShell sandboxing and lifecycle management around an existing OpenClaw install. Hermes + NemoClaw adds a skills-and-memory self-improvement loop with policy controls baked in. Both deploy anywhere — security profiles are host-agnostic.

The OpenShell piece

OpenShell is doing the heavy lifting on safety and is worth understanding separately. It gives each agent — and each sub-agent — an isolated, purpose-built sandbox designed for AI that modifies its own environment. Agents can install packages, learn new skills, experiment. The host system stays clean.

The policy engine evaluates at the binary, path, and method level. Developers grant real-time approvals; every allow and deny is logged for forensic-level audit.

"Run any agent more safely. Shape its access not its capabilities, and help keep inference private."

That's the design intent in a sentence. The goal isn't to nerf the agent — it's to constrain where it operates, not what it can reason about. That's the right tradeoff for enterprise.

Why Nvidia built this

Nader Khalil flagged it directly in his New Stack interview: "There are teams within enterprises who are more worried." NemoClaw is the answer to the worried camp.

The business logic follows CUDA X — find where enterprises need tooling to unlock GPU compute, build that tooling, open-source it. Nvidia's revenue depends on enterprise GPU adoption. Enterprise GPU adoption depends on agents running safely in production. NemoClaw reduces the blocker.

They're also contributing full-time engineers to OpenClaw directly. NemoClaw isn't a wrapper play; it's Nvidia investing in the whole ecosystem.

What to do

  • Running OpenClaw in production? NemoClaw is the obvious governance upgrade — one curl command adds sandboxing and policy controls around your existing setup.
  • Evaluating agent security? Read the OpenShell architecture — the sandbox-per-agent + granular policy engine design is genuinely well thought through.
  • Watching Hermes? The Hermes blueprint (self-improving skills loop + OpenShell controls) is the most interesting combination in the stack right now.
  • On Nvidia hardware? Nemotron routing in NemoClaw keeps inference local by default. Worth benchmarking against your current model mix on cost and latency.

Sources: NemoClaw · OpenShell · NeMo Agent Toolkit docs

✏️ Drafted with KewBot (AI), edited and approved by Drew.