Skip to main content

Interface: SandboxedToolForgeConfig

Defined in: packages/agentos/src/emergent/SandboxedToolForge.ts:48

Configuration options for the SandboxedToolForge.

All fields are optional and fall back to sensible defaults.

Properties

fetchDomainAllowlist?

optional fetchDomainAllowlist: string[]

Defined in: packages/agentos/src/emergent/SandboxedToolForge.ts:68

When fetch is in the allowlist, only requests to these domains are permitted. An empty array means all domains are allowed. Domain matching is case-insensitive and checks exact host equality.

Default

[]

fsReadRoots?

optional fsReadRoots: string[]

Defined in: packages/agentos/src/emergent/SandboxedToolForge.ts:75

Filesystem roots sandboxed fs.readFile calls may access. Relative paths are resolved from the current working directory. Defaults to the current working directory only.


memoryMB?

optional memoryMB: number

Defined in: packages/agentos/src/emergent/SandboxedToolForge.ts:54

Maximum heap memory in megabytes for the sandbox process. Used with isolated-vm; the vm fallback cannot enforce memory limits.

Default

128

timeoutMs?

optional timeoutMs: number

Defined in: packages/agentos/src/emergent/SandboxedToolForge.ts:60

Maximum wall-clock execution time in milliseconds.

Default

5000