Merge branch 'experiment/cross-check' of gitlab.com:samnasbo/shared/galaxy
This commit is contained in:
@@ -907,6 +907,12 @@ pub enum FeatureFlag {
|
||||
LspCompletion,
|
||||
LspRename,
|
||||
LspSignatureHelp,
|
||||
|
||||
/// Enables the "Crosscheck Work" experiment, which spawns a reviewer
|
||||
/// sub-agent after the main agent finishes a turn. The reviewer critiques
|
||||
/// the output and sends feedback back to the main agent until it responds
|
||||
/// with "LGTM!".
|
||||
CrosscheckWork,
|
||||
}
|
||||
|
||||
static FLAG_STATES: [AtomicBool; cardinality::<FeatureFlag>()] =
|
||||
@@ -976,6 +982,7 @@ pub const DOGFOOD_FLAGS: &[FeatureFlag] = &[
|
||||
FeatureFlag::BackgroundComputerUse,
|
||||
FeatureFlag::ContextWindowUsageBreakdown,
|
||||
FeatureFlag::WaitForEventsParentRegistration,
|
||||
FeatureFlag::CrosscheckWork,
|
||||
];
|
||||
|
||||
/// Features enabled for feature preview build users (e.g.: Friends of Warp).
|
||||
|
||||
@@ -215,12 +215,12 @@ fn resolve_standard_action(action: StandardAction) -> StandardMenuItemProperties
|
||||
ns_string!(""),
|
||||
),
|
||||
StandardAction::Quit => make(
|
||||
ns_string!("Quit Warp"),
|
||||
ns_string!("Quit Galaxy"),
|
||||
sel!(terminate:),
|
||||
cmd,
|
||||
ns_string!("q"),
|
||||
),
|
||||
StandardAction::Hide => make(ns_string!("Hide Warp"), sel!(hide:), cmd, ns_string!("h")),
|
||||
StandardAction::Hide => make(ns_string!("Hide Galaxy"), sel!(hide:), cmd, ns_string!("h")),
|
||||
StandardAction::HideOtherApps => make(
|
||||
ns_string!("Hide Others"),
|
||||
sel!(hideOtherApplications:),
|
||||
|
||||
Reference in New Issue
Block a user