Skip to content

AcpSpawnSpec

Defined in: acp-types.ts:31

What an AcpRuntime needs in order to launch the ACP agent process. Unlike the legacy SpawnConfig, this is just process-spawn shape — no adapter-specific concepts (no workspaceReadOnly, no sessionStateDir).

Properties

command

command: string

Defined in: acp-types.ts:32


args

args: string[]

Defined in: acp-types.ts:33


env?

optional env?: Record<string, string>

Defined in: acp-types.ts:34


cwd?

optional cwd?: string

Defined in: acp-types.ts:35


image?

optional image?: string

Defined in: acp-types.ts:37

Container image. Used by DockerAcpRuntime; ignored by LocalAcpRuntime.


mounts?

optional mounts?: AcpMount[]

Defined in: acp-types.ts:39

Bind mounts. Used by DockerAcpRuntime; ignored by LocalAcpRuntime.