--env:
Environment List
The table uses the ids and descriptions registered for the public environment providers in the current AgentCompass checkout. Run the command after pulling new code to inspect the installed registry:
Choose
host_process only for trusted local workloads that require no isolation. Use Docker for local containerized
execution and Daytona or Modal when tasks must run in remote sandboxes. Each provider page documents prerequisites,
credentials, supported resources, network capabilities, and operational limitations.
Configure Environment Parameters
The General Run Parameter Reference introduces--env-params <json>. The <json> value combines provider-neutral network controls with fields owned by the selected
environment provider:
Shared Network Fields
These fields are extracted intoEnvironmentSpec before the selected provider config is built:
A policy string is one of
"public", "no-network", or "allowlist". Use the object form when an allowlist is
required:
host_process supports only public. See
Network Policy for provider-specific allowlist support and verification.
Selected Provider Fields
RuntimeEnvironmentConfig has no other shared user-facing fields. Each provider defines its complete schema according
to its official runtime API:
Field names, units, defaults, and mutual exclusions differ between providers. Do not copy a Daytona
resources object
into Docker or assume Modal memory uses Docker size syntax.
See Sandbox Resource Limits for a provider comparison, exact units, precedence,
capacity planning, and failure diagnosis.
Inspect the Complete Schema
Print every accepted provider field, type, default, and description from the installed implementation:Build the JSON Object
For example, a custom Docker run can combine Docker fields with the three phase policies:--env-params values take precedence over inferred recipe defaults. Preserve the benchmark’s
official image, resource, and network settings when reproducing a public score; record every intentional difference.
--env-params must be valid JSON. CLI values deep-merge over matching keys in environment.params from configuration
files. Inspect the merged built-in and configuration-file values before adding the final CLI override:
Scale the Provider Safely
--task-concurrency controls tasks in flight, --provider-limit bounds process-wide provider sessions, and
--env-open-qps paces environment creation. These are runtime parameters rather than --env-params fields. Use
agentcompass run to tune them against model
capacity, provider quota, and available CPU, memory, and storage.