
Nvidia Nemoclaw
Install and run OpenClaw always-on assistants inside NVIDIA OpenShell policy sandboxes with Nemotron inference on NVIDIA cloud.
Overview
NVIDIA NemoClaw is an agent skill for the Build phase that installs and orchestrates policy-enforced OpenShell sandboxes for OpenClaw with NVIDIA cloud Nemotron inference.
Install
npx skills add https://github.com/aradotso/trending-skills --skill nvidia-nemoclawWhat is this skill?
- TypeScript CLI plugin that installs OpenShell and creates policy-enforced sandboxes for OpenClaw
- Routes inference through NVIDIA cloud Nemotron models with governed network, filesystem, syscall, and API access
- One-line installer plus guided onboard wizard (curl nemoclaw.sh)
- Prerequisites: Ubuntu 22.04+, Node.js 20+ (22 recommended), npm 10+, Docker, OpenShell
- Alpha status—interfaces and APIs may change without notice
- Alpha release—interfaces and APIs may change without notice
- Prerequisites: Ubuntu 22.04 LTS+, Node.js 20+ and npm 10+ (Node 22 recommended), Docker, OpenShell
- One-line install: curl -fsSL https://nvidia.com/nemoclaw.sh | bash
Adoption & trust: 1.3k installs on skills.sh; 31 GitHub stars; 2/3 security scanners passed (skills.sh audits).
What problem does it solve?
You want an always-on OpenClaw assistant but cannot safely run it on the host with unrestricted network, filesystem, and model API access.
Who is it for?
Solo builders on Ubuntu with Docker who standardize on NVIDIA OpenShell and Nemotron for secured OpenClaw deployments.
Skip if: Teams needing a stable GA CLI contract, non-Linux desktops, or OpenClaw installs without sandbox or NVIDIA cloud inference.
When should I use this skill?
Triggers include set up NemoClaw for OpenClaw, install NVIDIA NemoClaw sandbox, run OpenClaw in a secure sandbox, configure NemoClaw inference with NVIDIA cloud, manage sandboxed agent, nemoclaw onboard and deploy, OpenS
What do I get? / Deliverables
After onboarding, OpenClaw runs inside an OpenShell sandbox with declarative policy and NVIDIA-routed inference ready for agent workloads.
- NemoClaw CLI plugin and onboarded OpenClaw deployment inside OpenShell
- Policy-governed sandbox with NVIDIA cloud inference routing
Recommended Skills
Journey fit
Canonical shelf is Build because the skill centers on first-time plugin install, onboard wizard, and sandbox orchestration for agent runtimes—not day-two ops tuning. agent-tooling matches OpenClaw assistant setup, OpenShell runtime wiring, and declarative policy for model API and egress around the agent.
How it compares
Use instead of a manual OpenClaw install when you need OpenShell policy sandboxes and centralized Nemotron routing rather than host-wide agent privileges.
Common Questions / FAQ
Who is nvidia-nemoclaw for?
Indie and solo developers shipping always-on OpenClaw agents on Linux who want NVIDIA OpenShell isolation and cloud Nemotron inference governed by declarative policy.
When should I use nvidia-nemoclaw?
Use during Build agent-tooling when triggers match—set up NemoClaw, install the NVIDIA sandbox, configure inference, onboard and deploy, or secure an existing OpenClaw path with OpenShell.
Is nvidia-nemoclaw safe to install?
It pulls an external install script and runs Docker-backed sandboxes; review the Security Audits panel on this Prism page and inspect policy before trusting production secrets.
SKILL.md
READMESKILL.md - Nvidia Nemoclaw
# NVIDIA NemoClaw > Skill by [ara.so](https://ara.so) — Daily 2026 Skills collection. NVIDIA NemoClaw is an open-source TypeScript CLI plugin that simplifies running [OpenClaw](https://openclaw.ai) always-on AI assistants securely. It installs and orchestrates the [NVIDIA OpenShell](https://github.com/NVIDIA/OpenShell) runtime, creates policy-enforced sandboxes, and routes all inference through NVIDIA cloud (Nemotron models). Network egress, filesystem access, syscalls, and model API calls are all governed by declarative policy. **Status:** Alpha — interfaces and APIs may change without notice. --- ## Installation ### Prerequisites - Linux Ubuntu 22.04 LTS or later - Node.js 20+ and npm 10+ (Node.js 22 recommended) - Docker installed and running - [NVIDIA OpenShell](https://github.com/NVIDIA/OpenShell) installed ### One-Line Installer ```bash curl -fsSL https://nvidia.com/nemoclaw.sh | bash ``` This installs Node.js (if absent), runs the guided onboard wizard, creates a sandbox, configures inference, and applies security policies. ### Manual Install (from source) ```bash git clone https://github.com/NVIDIA/NemoClaw.git cd NemoClaw npm install npm run build npm link # makes `nemoclaw` available globally ``` --- ## Environment Variables ```bash # Required: NVIDIA cloud API key for Nemotron inference export NVIDIA_API_KEY="nvapi-xxxxxxxxxxxx" # Optional: override default model export NEMOCLAW_MODEL="nvidia/nemotron-3-super-120b-a12b" # Optional: custom sandbox data directory export NEMOCLAW_SANDBOX_DIR="/var/nemoclaw/sandboxes" ``` Get an API key at [build.nvidia.com](https://build.nvidia.com). --- ## Quick Start ### 1. Onboard a New Agent ```bash nemoclaw onboard ``` The interactive wizard prompts for: - Sandbox name (e.g. `my-assistant`) - NVIDIA API key (`$NVIDIA_API_KEY`) - Inference model selection - Network and filesystem policy configuration Expected output on success: ``` ────────────────────────────────────────────────── Sandbox my-assistant (Landlock + seccomp + netns) Model nvidia/nemotron-3-super-120b-a12b (NVIDIA Cloud API) ────────────────────────────────────────────────── Run: nemoclaw my-assistant connect Status: nemoclaw my-assistant status Logs: nemoclaw my-assistant logs --follow ────────────────────────────────────────────────── [INFO] === Installation complete === ``` ### 2. Connect to the Sandbox ```bash nemoclaw my-assistant connect ``` ### 3. Chat with the Agent (inside sandbox) **TUI (interactive chat):** ```bash sandbox@my-assistant:~$ openclaw tui ``` **CLI (single message):** ```bash sandbox@my-assistant:~$ openclaw agent --agent main --local -m "hello" --session-id test ``` --- ## Key CLI Commands ### Host Commands (`nemoclaw`) | Command | Description | |---|---| | `nemoclaw onboard` | Interactive setup: gateway, providers, sandbox | | `nemoclaw <name> connect` | Open interactive shell inside sandbox | | `nemoclaw <name> status` | Show NemoClaw-level sandbox health | | `nemoclaw <name> logs --follow` | Stream sandbox logs | | `nemoclaw start` | Start auxiliary services (Telegram bridge, tunnel) | | `nemoclaw stop` | Stop auxiliary services | | `nemoclaw deploy <instance>` | Deploy to remote GPU instance via Brev | | `openshell term` | Launch OpenShell TUI for monitoring and approvals | ### Plugin Commands (`openclaw nemoclaw`, run inside sandbox) > Note: These are under active development — use `nemoclaw` host CLI as the primary interf