Deployment partnerAI-first execution

Done-for-youNemo Clawdeploymentfor companiesthat wantAI-first execution

We help teams set up Nemo Claw, configure Open Claw, stabilize AI environments, and roll out production-minded infrastructure without turning the engagement into a slow-moving internal engineering burden.

Reference stackAlpha
Runtime
NVIDIA OpenShell
Agent
OpenClaw inside sandbox
Inference
Provider-routed, policy-governed
Positioning
Safer always-on assistants
NemoClaw is described as an open source reference stack that simplifies running OpenClaw always-on assistants more safely by installing the OpenShell runtime and governing network, filesystem, and inference behavior.
Nemo Claw SetupOpen Claw SetupAI Deployment ServiceWhite-Glove ImplementationWorkflow RolloutAutomation InfrastructureDone-for-You Deployment
Nemo Claw SetupOpen Claw SetupAI Deployment ServiceWhite-Glove ImplementationWorkflow RolloutAutomation InfrastructureDone-for-You Deployment
Editorial guide

How to setup Nemo Claw

A practical on-page guide for setup intent: NemoClaw as a reference stack for running OpenClaw inside OpenShell with guided onboarding, routed inference, and sandbox policy controls.

Quick setup reference
Minimum hardware
4 vCPU · 8 GB RAM · 20 GB free disk
Recommended
4+ vCPU · 16 GB RAM · 40 GB free disk
Supported paths
Linux with Docker, macOS with Colima or Docker Desktop, and Windows via WSL plus Docker Desktop backend are the main supported onboarding paths.
Install command
curl -fsSL https://www.nvidia.com/nemoclaw.sh | bash
Step 01

Check prerequisites before touching install

NemoClaw is currently alpha software and not production-ready. The reference setup expects Linux or supported macOS paths, Node.js 22.16+, npm 10+, a supported container runtime, and OpenShell already installed. The markdown also calls out minimum hardware expectations like 4 vCPU, 8 GB RAM minimum, and 20 GB free disk, with 16 GB RAM and 40 GB disk recommended.

Step 02

Run the installer and let onboarding create the sandbox

The install flow uses the NemoClaw script, which installs missing Node.js if needed, then launches the guided onboarding wizard to create a fresh OpenClaw sandbox, configure inference, and apply security policies.

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

Connect into the sandboxed assistant

After setup, the CLI summary gives you the connect, status, and logs commands. The standard connect path is to open the sandbox shell first, then run OpenClaw inside it.

nemoclaw my-assistant connect
Step 04

Use TUI for interaction or CLI for full output

The markdown distinguishes between the interactive TUI and the one-shot CLI. TUI is better for conversational interaction, while the CLI is better if you want the full text of a long response printed directly in terminal.

openclaw tui

openclaw agent --agent main --local -m "hello" --session-id test
Step 05

Understand what NemoClaw is actually doing

The markdown frames NemoClaw as a reference stack for running OpenClaw inside NVIDIA OpenShell, with policy-governed file access, network egress, and inference routing. In other words, the setup is not just installation, it is a sandboxed operating model with controlled provider routing and runtime protection layers.

Compare

Nemo Claw vs Open Claw, simplified for buyers.

Metric
Time to first usable baseline
Nemo Claw
Faster
Open Claw
Slower, more structured
Metric
Implementation complexity
Nemo Claw
Lower
Open Claw
Higher
Metric
Control and extensibility
Nemo Claw
Moderate
Open Claw
High
Metric
Best fit
Nemo Claw
Fast-moving teams
Open Claw
Teams needing deeper customization
Metric
Operational overhead
Nemo Claw
Lower
Open Claw
Moderate
Metric
Long-term architecture ceiling
Nemo Claw
Moderate
Open Claw
High
FAQ

Questions buyers actually ask before committing to setup.

What does done-for-you Nemo Claw setup include?

It includes environment preparation, runtime alignment, setup support, deployment guidance, workflow configuration, and a cleaner operational starting point so your team does not waste cycles on trial-and-error setup.

Do you help with both Nemo Claw and Open Claw?

Yes. We help with Nemo Claw setup, Open Claw setup, rollout strategy, workflow integration, and architecture decisions depending on the level of speed or control your team wants.

Is NemoClaw production-ready?

The material explicitly labels NemoClaw as alpha software in early preview, notes that interfaces and behavior may change, and says it is not production-ready yet.

Why would a company use a deployment partner here?

Because the value is not just getting it to install once. The real value is compressing setup time, reducing rollout mistakes, and making the environment usable without pulling your internal team into weeks of configuration drag.

Complete reference

Everything from nemoclaw.md— kept clean for long reads.

Scroll to documentation ↓

🦞 NVIDIA NemoClaw: Reference Stack for Running OpenClaw in OpenShell

<!-- start-badges -->

License Security Policy Project Status Discord

<!-- end-badges --> <!-- start-intro -->

NVIDIA NemoClaw is an open source reference stack that simplifies running OpenClaw always-on assistants more safely. It installs the NVIDIA OpenShell runtime, part of NVIDIA Agent Toolkit, which provides additional security for running autonomous agents.

<!-- end-intro -->

Alpha software

NemoClaw is available in early preview starting March 16, 2026. This software is not production-ready. Interfaces, APIs, and behavior may change without notice as we iterate on the design. The project is shared to gather feedback and enable early experimentation. We welcome issues and discussion from the community while the project evolves.

NemoClaw adds guided onboarding, a hardened blueprint, state management, messaging bridges, routed inference, and layered protection on top of the NVIDIA OpenShell runtime. For the full feature list, refer to Overview. For the system diagram, component model, and blueprint lifecycle, refer to How It Works and Architecture.

Getting Started

Follow these steps to install NemoClaw and run your first sandboxed OpenClaw agent.

<!-- start-quickstart-guide -->

Prerequisites

Before getting started, check the prerequisites to ensure you have the necessary software and hardware to run NemoClaw.

Hardware

ResourceMinimumRecommended
CPU4 vCPU4+ vCPU
RAM8 GB16 GB
Disk20 GB free40 GB free

The sandbox image is approximately 2.4 GB compressed. During image push, the Docker daemon, k3s, and the OpenShell gateway run alongside the export pipeline, which buffers decompressed layers in memory. On machines with less than 8 GB of RAM, this combined usage can trigger the OOM killer. If you cannot add memory, configuring at least 8 GB of swap can work around the issue at the cost of slower performance.

Software

DependencyVersion
LinuxUbuntu 22.04 LTS or later
Node.js22.16 or later
npm10 or later
Container runtimeSupported runtime installed and running
OpenShellInstalled

Container Runtimes

PlatformSupported runtimesNotes
LinuxDockerPrimary supported path.
macOS (Apple Silicon)Colima, Docker DesktopInstall Xcode Command Line Tools (xcode-select --install) and start the runtime before running the installer.
macOS (Intel)PodmanNot supported yet. Depends on OpenShell support for Podman on macOS.
Windows WSLDocker Desktop (WSL backend)Supported target path.
DGX SparkDockerRefer to the DGX Spark setup guide for cgroup v2 and Docker configuration.

Install NemoClaw and Onboard OpenClaw Agent

Download and run the installer script. The script installs Node.js if it is not already present, then runs the guided onboard wizard to create a sandbox, configure inference, and apply security policies.

ℹ️ Note

NemoClaw creates a fresh OpenClaw instance inside the sandbox during the onboarding process.

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

If you use nvm or fnm to manage Node.js, the installer may not update your current shell's PATH. If nemoclaw is not found after install, run source ~/.bashrc (or source ~/.zshrc for zsh) or open a new terminal.

When the install completes, a summary confirms the running environment:

──────────────────────────────────────────────────
Sandbox      my-assistant (Landlock + seccomp + netns)
Model        nvidia/nemotron-3-super-120b-a12b (NVIDIA Endpoints)
──────────────────────────────────────────────────
Run:         nemoclaw my-assistant connect
Status:      nemoclaw my-assistant status
Logs:        nemoclaw my-assistant logs --follow
──────────────────────────────────────────────────

[INFO]  === Installation complete ===

Chat with the Agent

Connect to the sandbox, then chat with the agent through the TUI or the CLI.

nemoclaw my-assistant connect

In the sandbox shell, open the OpenClaw terminal UI and start a chat:

openclaw tui

Alternatively, send a single message and print the response:

openclaw agent --agent main --local -m "hello" --session-id test

Uninstall

To remove NemoClaw and all resources created during setup, run the uninstall script:

curl -fsSL https://raw.githubusercontent.com/NVIDIA/NemoClaw/refs/heads/main/uninstall.sh | bash
FlagEffect
--yesSkip the confirmation prompt.
--keep-openshellLeave the openshell binary installed.
--delete-modelsAlso remove NemoClaw-pulled Ollama models.

For troubleshooting installation or onboarding issues, see the Troubleshooting guide.

<!-- end-quickstart-guide -->

Documentation

Refer to the following pages on the official documentation website for more information on NemoClaw.

PageDescription
OverviewWhat NemoClaw does and how it fits together.
How It WorksPlugin, blueprint, sandbox lifecycle, and protection layers.
ArchitecturePlugin structure, blueprint lifecycle, sandbox environment, and host-side state.
Inference ProfilesSupported providers, validation, and routed inference configuration.
Network PoliciesBaseline rules, operator approval flow, and egress control.
Customize Network PolicyStatic and dynamic policy changes, presets.
Security Best PracticesControls reference, risk framework, and posture profiles for sandbox security.
Sandbox HardeningContainer security measures, capability drops, process limits.
CLI CommandsFull NemoClaw CLI command reference.
TroubleshootingCommon issues and resolution steps.

Project Structure

The following directories make up the NemoClaw repository.

NemoClaw/
├── bin/              # CLI entry point and library modules (CJS)
├── nemoclaw/         # TypeScript plugin (Commander CLI extension)
│   └── src/
│       ├── blueprint/    # Runner, snapshot, SSRF validation, state
│       ├── commands/     # Slash commands, migration state
│       └── onboard/      # Onboarding config
├── nemoclaw-blueprint/   # Blueprint YAML and network policies
├── scripts/          # Install helpers, setup, automation
├── test/             # Integration and E2E tests
└── docs/             # User-facing docs (Sphinx/MyST)

Community

Join the NemoClaw community to ask questions, share feedback, and report issues.

Contributing

We welcome contributions. See CONTRIBUTING.md for development setup, coding standards, and the PR process.

Security

NVIDIA takes security seriously. If you discover a vulnerability in NemoClaw, DO NOT open a public issue. Use one of the private reporting channels described in SECURITY.md:

For security bulletins and PSIRT policies, visit the NVIDIA Product Security portal.

Notice and Disclaimer

This software automatically retrieves, accesses or interacts with external materials. Those retrieved materials are not distributed with this software and are governed solely by separate terms, conditions and licenses. You are solely responsible for finding, reviewing and complying with all applicable terms, conditions, and licenses, and for verifying the security, integrity and suitability of any retrieved materials for your specific use case. This software is provided "AS IS", without warranty of any kind. The author makes no representations or warranties regarding any retrieved materials, and assumes no liability for any losses, damages, liabilities or legal consequences from your use or inability to use this software or any retrieved materials. Use this software and the retrieved materials at your own risk.

License

Apache 2.0. See LICENSE.

Next step

Want Nemo Claw set up without wasting internal time on the stack?

We help teams move faster on Nemo Claw setup, Open Claw rollout, deployment hardening, and AI infrastructure execution with a more hands-on, done-for-you model.

Compare Platforms