nexus-agents - v2.80.0
    Preparing search index...

    Interface CliExecutionOptions

    Execution options for CLI adapters.

    interface CliExecutionOptions {
        timeoutMs?: number;
        allowRetry?: boolean;
        maxRetries?: number;
        trackUsage?: boolean;
        onProgress?: () => void;
    }
    Index

    Properties

    timeoutMs?: number

    Timeout in milliseconds

    allowRetry?: boolean

    Whether to allow retries

    maxRetries?: number

    Maximum retry attempts

    trackUsage?: boolean

    Whether to track usage

    onProgress?: () => void

    Progress callback invoked on subprocess stdout activity (Issue #1087).