Bypassing NemoClaw Sandbox Isolation for Local Nemotron 9B Agent

Local NemoClaw Workaround for Full Local Inference
A developer has documented a method to bypass NVIDIA's NemoClaw sandbox isolation to run a fully local AI agent. NemoClaw, launched at GTC, is an enterprise sandbox for AI agents built on OpenShell (k3s + Landlock + seccomp) that by default expects cloud API connections and heavily restricts local networking.
Technical Implementation Details
The developer wanted 100% local inference on WSL2 + RTX 5090 and punched through the sandbox to reach a vLLM instance. The solution involved multiple components:
- Host iptables configuration: Allowed traffic from Docker bridge to vLLM on port 8000
- Pod TCP Relay: Custom Python relay in the Pod's main namespace bridging sandbox veth → Docker bridge
- Sandbox iptables injection: Used
nsenterto inject ACCEPT rule into the sandbox's OUTPUT chain, bypassing the default REJECT - Tool Call Translation: Built a custom Gateway that intercepts the streaming SSE response from vLLM, buffers it, parses Nemotron 9B's
<TOOLCALL>[...]</TOOLCALL>text output, and rewrites it into OpenAI-compatibletool_callsin real-time
This configuration allows opencode inside the sandbox to use Nemotron as a fully autonomous agent. Everything runs locally with no data leaving the machine. The setup is volatile (WSL2 reboots wipe the iptables hacks), but enables a 9B model to execute terminal commands inside a locked-down enterprise container.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Academic Research Skills for Claude Code: A Human-in-the-Loop Pipeline for Paper Writing
Academic Research Skills (ARS) v3.7.0+ is a Claude Code plugin that automates reference hunting, citation formatting, data checking, and logical consistency review while keeping the human researcher in control. Install via /plugin marketplace add Imbad0202/academic-research-skills.

Claude Code Rebuilt a SaaS Onboarding Flow in 6 Hours vs Developer's 3-Week Quote, Boosting Activation 13 Points
A SaaS founder used Claude Code to rebuild their entire onboarding flow (signup → profile → first invoice → dashboard tutorial) in 6 hours, replacing a developer's $4,500, 3-week estimate. Activation rate improved 13 points from 35% to 48%.

Simplifying Automation with OpenClaw Wrappers
OpenClaw Wrappers offer an efficient way to manage AI coding agents. Discover how these tools integrate easily into existing frameworks with specific command examples and community feedback.

codebase-md: Tool auto-generates CLAUDE.md with git hook maintenance
codebase-md v0.1.0 scans projects to generate CLAUDE.md files with architecture detection, dependency health checks, and git insights. It includes git hooks to keep documentation fresh and supports other AI coding tools with additional config files.