agentOS API Reference - v0.2.0-rc.3
    Preparing search index...

    Interface AgentOsOptions

    Serializable Agent OS VM options. These fields are accepted at the top level of agentOS({ ... }) (see AgentOsActorConfigInput); this type collects them for callers that want to build the option set as a standalone value.

    Kept structurally open: the full option set is owned by the sidecar/native layer and forwarded across the boundary, so consumers configure it as data.

    interface AgentOsOptions {
        additionalInstructions?: string;
        allowedNodeBuiltins?: string[];
        limits?: unknown;
        loopbackExemptPorts?: number[];
        mounts?: unknown[];
        permissions?: unknown;
        rootFilesystem?: unknown;
        sidecar?: unknown;
        software?: unknown;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    additionalInstructions?: string
    allowedNodeBuiltins?: string[]
    limits?: unknown
    loopbackExemptPorts?: number[]
    mounts?: unknown[]
    permissions?: unknown
    rootFilesystem?: unknown
    sidecar?: unknown
    software?: unknown