Anchorage API reference
    Preparing search index...

    Successful result returned by an agent CLI connector.

    interface AgentCliOutput {
        command: string;
        exitCode: number;
        simulated?: boolean;
        text: string;
    }
    Index

    Properties

    command: string

    Redacted display command for diagnostics. It is not executable and never contains the prompt.

    exitCode: number

    Process exit code. Successful connector calls return zero.

    simulated?: boolean

    Present (true) when this was a dry-run simulation; nothing was spawned.

    text: string

    The agent's final text (parsed when the CLI supports it, else raw stdout).