NVIDIA shipped NemoClaw on June 18, 2026, an open source secure AI agent framework now available on GitHub and Hugging Face. The release came through NVIDIA’s official channels and is licensed under Apache 2.0. NemoClaw is not a single chatbot model. It is a framework for running tool-calling agents with policy controls, audit logs, and sandboxed tool execution. Developers can inspect the full source and run it locally or on a self-hosted server. This matters because most commercial agent platforms hide their guardrails and billing logic. NVIDIA published the framework as a direct answer to closed agent ecosystems. The code targets teams that need control over data flow and tool permissions without paying per-message agent fees.

The release lands at a tense moment for AI pricing. Major providers have tightened free tiers, added usage-based billing, and pushed agent features into paid plans. Free users now face aggressive API limits and paywalled agent tools. NemoClaw runs outside those billing systems. You bring your own model endpoint or run an open-weight model locally. The framework charges no token markup and no agent seat license. That makes it attractive for hobbyists, startups, and newsroom automation teams. The security angle is the bigger story. Closed agents often need broad API keys and third-party tool access. NemoClaw enforces per-tool policies at the framework level, not inside one vendor’s cloud console.

Technically, NemoClaw is model-agnostic but ships with a recommended reference stack. The default stack pairs the framework with NVIDIA Nemotron 3 Ultra 550B, an open-weight model with a 128K token context window. Users can swap in Llama 4 Scout or other Hugging Face models through a local inference server. NemoClaw itself is not a language model, so parameter count applies to the model you attach. The framework includes a policy engine, a tool registry with allowlists, an execution sandbox for shell and browser tools, and tamper-evident audit logs. Benchmarks depend on the model layer, but NVIDIA’s open model has posted competitive agentic coding and function-calling scores against closed rivals.

For open-source watchers, this is part of a broader shift. NVIDIA has released several open agent and physical AI projects in recent months. The free AI landscape continues to move toward self-hosted tools as monthly subscription prices rise. Major provider changes in June 2026 show why developers want escape hatches. NemoClaw gives an option that keeps agent logic, tool permissions, and audit records on your own hardware. That matters for media teams handling source material and for small shops that cannot afford per-seat agent platforms. It also matters for transparency. You can read the security code instead of trusting a marketing page.

How Do the Top Options Compare?

Framework Best For License Security model Model support Released
NVIDIA NemoClaw Security-focused self-hosted agents Apache 2.0 Policy controls, tool sandboxing, audit logs Nemotron 3 Ultra 550B, Llama 4 Scout, others June 18, 2026
Microsoft Agent Framework Azure and Copilot Studio users MIT Azure managed identity, prompt shields Azure OpenAI, Phi, Llama May 2026
Hermes Agent Open-weight tool calling and roleplay Apache 2.0 Basic tool allowlists Hermes 4, Llama 3, Qwen April 2026
OpenClaw Lightweight local agent scripting MIT Minimal, user-defined wrappers Any local model via Ollama March 2026

Licenses and release dates reflect public announcements as of June 2026. Security features vary by deployment mode. Always review each project’s current repository for updates.

1. NVIDIA NemoClaw , Best for security-focused self-hosted agent teams

NVIDIA NemoClaw is an Apache 2.0 licensed secure AI agent framework. It runs locally or on a self-hosted server. The key difference from generic agent libraries is policy enforcement. Every tool call passes through a rule engine before execution. You can allowlist specific shell commands, restrict browser actions, and block network calls to untrusted hosts. The framework records an audit trail for each agent run. That trail includes the model prompt, the tool arguments, the policy decision, and the execution result.

NemoClaw does not force one model. The recommended reference model is NVIDIA Nemotron 3 Ultra 550B, which has 550 billion parameters and a 128K token context window. You can also attach smaller open models like Llama 4 Scout or Qwen 3 to reduce hardware cost. The framework uses an adapter pattern for OpenAI-compatible endpoints, local inference servers, and Hugging Face Inference Endpoints. This flexibility gives teams a path from a single GPU workstation to a larger self-hosted cluster.

Security is where NemoClaw stands out. It ships with a default deny policy for file system writes, network egress, and credential access. Developers must explicitly grant each permission. The sandbox supports Linux namespaces for process isolation and a WebDriver harness for browser tasks. Credentials are stored in an encrypted keyring, not in the agent prompt. This reduces prompt injection risk because a leaked prompt does not automatically expose API keys. Audit logs are append-only and can be shipped to your own SIEM or log aggregator.

On the downside, NemoClaw requires more setup than a hosted agent. You need to configure the policy engine, the model endpoint, and the tool sandbox before your first run. The documentation is technical. If you want a zero-click agent, this is not it. But if you want a self-hosted framework that does not hide its guardrails, the tradeoff is reasonable. The NVIDIA GitHub organization hosts the source, and Hugging Face mirrors release artifacts.

Key strengths:

  • ✅ Apache 2.0 license allows commercial use without per-seat or per-token fees
  • ✅ Policy engine enforces tool permissions before execution
  • ✅ Sandbox isolates file system, network, and browser tool calls
  • ✅ Audit logs capture prompts, tool arguments, and policy decisions
  • ✅ Model-agnostic setup supports 550B open-weight or smaller local models
  • ❌ Requires manual setup of sandbox, policies, and model endpoint
  • ❌ No hosted free tier or one-click cloud deployment
  • ❌ Default policy deny can break tools until permissions are correctly granted

Who it’s for: Developers and small teams that need a self-hosted agent framework with enforceable security controls and no token markup.

2. Microsoft Agent Framework , Best for Azure and Copilot Studio users

Microsoft released its own open-source agent framework under an MIT license. It targets Azure and Copilot Studio users who want a standard way to build agent workflows. The framework provides connectors to Azure OpenAI, Azure AI Foundry, and Microsoft’s Phi family. It also includes prompt shield settings, managed identity integration, and a visual debugger for agent traces. For teams already inside the Microsoft cloud, this is the fastest path to production.

The framework is less neutral than NemoClaw. It works best with Azure OpenAI models but supports some open models through the Azure AI model catalog. Security is strong inside Azure, but some controls only apply when you use Microsoft’s cloud services. The open-source repo does not include the same managed threat protection as the hosted Azure AI service. You can self-host the code, but the best features require Azure credits and a configured tenant.

Microsoft’s agent framework is a direct response to the developer backlash over GitHub Copilot usage-based billing. It gives teams a way to avoid per-token agent markups. However, Azure compute still costs money. The MIT license is permissive, and the repo is active. For a newsroom that already runs Microsoft 365, this framework reduces integration friction. For a fully local setup, it is less attractive than NemoClaw.

Key strengths:

  • ✅ MIT license allows commercial use and modification
  • ✅ Deep Azure OpenAI and Copilot Studio integration
  • ✅ Managed identity and prompt shield support inside Azure
  • ✅ Active repo with visual agent trace debugging
  • ❌ Best features require Azure cloud services and credits
  • ❌ Less neutral for non-Microsoft model endpoints
  • ❌ Self-hosted mode lacks managed threat protection

Who it’s for: Teams already invested in Azure, Microsoft 365, or Copilot Studio that want an open-source agent layer.

3. Hermes Agent , Best for open-weight tool calling and roleplay

Nous Research released Hermes Agent as an open-source agent model and tooling stack. It is built on the Hermes family of open-weight models, known for strong tool calling and long context. The agent framework is Apache 2.0 licensed and focuses on reliable function calling for roleplay, research, and coding tasks. Unlike NemoClaw, Hermes Agent is less of a policy engine and more of a model plus runtime for tool use.

Hermes Agent supports local inference through llama.cpp, vLLM, and Hugging Face Transformers. It can run on a single GPU with quantized builds. The tool calling benchmark scores are competitive for open models, especially on multi-step function calls. The framework includes basic tool allowlists, but it does not offer the same sandboxing depth as NemoClaw. You are responsible for isolating file system and network access.

For developers who want a simple agent loop and a battle-tested open model, Hermes Agent is a solid choice. It is easier to start than NemoClaw if you do not need strict audit logs. The security tradeoff is real. Prompts can be manipulated, and tools run with the permissions of the local process. If you handle sensitive source material, pair it with a container or VM. Nous Research hosts the code on GitHub and the model weights on Hugging Face.

Key strengths:

  • ✅ Apache 2.0 model and runtime with strong function calling
  • ✅ Runs on a single GPU with quantized builds
  • ✅ Simple agent loop for research and coding tools
  • ✅ Open weights allow full inspection and fine-tuning
  • ❌ Sandboxing and audit logs are minimal compared to NemoClaw
  • ❌ Security depends on the host process permissions
  • ❌ Fewer policy controls for multi-user deployments

Who it’s for: Individual developers and researchers who want a flexible open-weight agent without heavy policy infrastructure.

4. OpenClaw , Best for lightweight local agent scripting

OpenClaw is a lightweight open-source agent scripting framework. It appears in the recent wave of free AI tool releases and targets developers who want to automate tasks with small local models. The framework is MIT licensed and works with Ollama, llama.cpp, and OpenAI-compatible endpoints. It is not a full security platform. OpenClaw gives you a thin wrapper for tool calling and a simple loop for agent steps.

OpenClaw’s advantage is speed. You can clone the repo, install one dependency, and run a script in minutes. It supports browser automation, shell commands, and file parsing through plug-ins. The downside is control. OpenClaw does not include a policy engine or an append-only audit log. Tool permissions are mostly set at the Python level. If a prompt injection tricks the model, the code will run whatever tool the wrapper exposes.

That makes OpenClaw best for low-risk automation and prototyping. It is a useful benchmark for what NemoClaw improves on. If you need a quick local agent to summarize PDFs or scrape a page, OpenClaw is fine. For production workflows with credentials, user data, or multi-step side effects, choose NemoClaw or Microsoft’s framework. The OpenClaw code is available under an MIT license, but the project is smaller and moves quickly.

Key strengths:

  • ✅ MIT license and minimal setup
  • ✅ Works with Ollama and local models for low-resource use
  • ✅ Fast to prototype simple agent scripts
  • ✅ Good for low-risk automation and hobby projects
  • ❌ No policy engine or audit log
  • ❌ Tool permissions depend on developer code, not a sandbox
  • ❌ Not suitable for sensitive production workloads

Who it’s for: Hobbyists and developers who need a quick local agent for low-risk scripting and prototyping.

Frequently Asked Questions

What is NVIDIA NemoClaw?

NVIDIA NemoClaw is an Apache 2.0 licensed open-source secure AI agent framework. It runs locally or on a self-hosted server and adds policy controls, tool sandboxing, and audit logs around tool-calling agents. It is not a standalone chatbot model; it attaches to open-weight or API models.

Is NVIDIA NemoClaw free for commercial use?

Yes. The framework is Apache 2.0 licensed, so you can use, modify, and distribute it in commercial products without per-seat or per-token fees. You still pay for your own compute and model inference.

What models does NemoClaw support?

NemoClaw is model-agnostic. The recommended stack uses NVIDIA Nemotron 3 Ultra 550B with a 128K token context window. It can also attach to Llama 4 Scout, Qwen 3, or any OpenAI-compatible endpoint through an adapter.

How does NemoClaw secure agent tool calls?

Every tool call passes through a policy engine before execution. Developers can allowlist shell commands, restrict network egress, and sandbox file system writes. Audit logs capture prompts, tool arguments, and policy decisions.

Can I run NemoClaw fully offline?

Yes. You can run NemoClaw with local models through llama.cpp, vLLM, or another OpenAI-compatible local server. No cloud account is required if you use self-hosted inference.

How does NemoClaw compare to Microsoft Agent Framework?

NemoClaw focuses on neutral, self-hosted security controls and works with any model endpoint. Microsoft Agent Framework is deeper inside Azure and Copilot Studio but leans on cloud services for its best security and identity features.

What Should You Remember?

  • Open-source license: NemoClaw is Apache 2.0, so commercial use and modification are free with no per-token markup.
  • Policy engine: Tool calls are checked against allowlists before execution, which reduces prompt injection risk.
  • Model flexibility: Attach Nemotron 3 Ultra 550B at 128K context or smaller local models like Llama 4 Scout.
  • Audit logs: Append-only logs capture prompts, tool arguments, and policy decisions for compliance.
  • Self-hosted setup: You control compute and credentials, but you must configure the sandbox and model endpoint.
  • Competitive landscape: Microsoft, Nous Research, and OpenClaw offer alternatives with different security and cloud tradeoffs.
  • Free AI shift: NemoClaw arrives as major providers tighten free tiers and push agent features into paid plans.

Free AI News is an independent editorial publication. Information about AI pricing, free-tier limits, and features changes frequently and may become outdated. Always verify current details through the vendor’s official pages. Affiliate links may earn a commission at no cost to you, and never affect our reporting.