@runloop/agent-axon-client
    Preparing search index...

    Interface SpawnOptions

    Options passed to the spawn function.

    interface SpawnOptions {
        args: string[];
        command: string;
        cwd?: string;
        env: { [envVar: string]: string | undefined };
        signal: AbortSignal;
    }
    Index

    Claude SDK

    args: string[]

    Arguments to pass to the command

    command: string

    Command to execute

    cwd?: string

    Working directory

    env: { [envVar: string]: string | undefined }

    Environment variables

    signal: AbortSignal

    Abort signal for cancellation