@oss-autopilot/core - v3.7.0
    Preparing search index...

    Interface ActionMenuItem

    A single action menu item pre-computed by the CLI. The orchestration layer can use these directly in AskUserQuestion prompts.

    interface ActionMenuItem {
        capacityWarning?: string;
        description: string;
        key: string;
        label: string;
    }
    Index

    Properties

    capacityWarning?: string

    Present when the action would exceed the user's PR capacity limit (#765).

    description: string

    Explanation shown below the label.

    key: string

    Stable identifier for routing (e.g., "address_all", "search", "done").

    label: string

    Display text for the option (e.g., "Work through all 3 issues (Recommended)").