Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 857 Bytes

File metadata and controls

44 lines (30 loc) · 857 Bytes

Configuration

agentkernel can be configured via command-line flags or a agentkernel.toml config file.

Config File Location

Place agentkernel.toml in your project directory, or specify a path with --config:

# Use config in current directory
agentkernel sandbox create my-sandbox --config agentkernel.toml

# Use config from specific path
agentkernel sandbox create my-sandbox --config /path/to/agentkernel.toml

Quick Example

[sandbox]
name = "my-project"

[build]
dockerfile = "Dockerfile"

[agent]
preferred = "claude"

[resources]
vcpus = 2
memory_mb = 1024

[security]
profile = "moderate"
network = true
mount_cwd = true

Sections