Home Docs Blog Product Contact

Sandbox Configuration

The Hardened Sandbox protects your system from unintended agent actions. This guide covers advanced sandbox configuration.

Settings

{
  "omni.sandbox.enabled": true,
  "omni.sandbox.timeout": 30000,
  "omni.sandbox.allowNetwork": false,
  "omni.sandbox.allowFileWrite": true,
  "omni.sandbox.allowedPaths": ["./src", "./tests", "./public"],
  "omni.sandbox.blockedCommands": ["rm -rf", "format", "del /f"]
}

Security Levels

LevelConfigurationUse Case
StrictNo network, limited pathsHigh-security environments
StandardNo network, workspace accessNormal development (default)
RelaxedNetwork allowed, workspace accessFull-stack development

Related