first pass of merging in warp (doesn't build)

This commit is contained in:
Ryan Ward
2026-07-01 16:08:58 -05:00
parent 2f64909469
commit 4770ac06b5
3662 changed files with 414574 additions and 89772 deletions
+8 -9
View File
@@ -24,17 +24,16 @@ impl std::fmt::Display for OnboardingIntention {
pub use callout::{OnboardingCalloutView, OnboardingKeybindings};
/// User-facing names of the AI features enabled when the agent intention is selected.
/// User-facing descriptions of the AI features enabled when the agent intention is selected.
/// Shared by the intention slide's agent card checklist and the login slide's
/// skip-login confirmation dialog so the two always stay in sync.
pub const AI_FEATURES: &[&str] = &[
"Warp agents",
"Oz cloud agents platform",
"Next command predictions",
"Prompt suggestions",
"Codebase context",
"Remote control with Claude Code, Codex, and other agents",
"Agents over SSH",
"Use frontier and open-weight models with Warp Agent",
"Hand off agent work to cloud agents",
"Automatically diagnose and fix terminal errors",
"Agentic control of long-running commands and TUIs",
"Review code diffs and send comments directly to agents",
"Remote control for Claude Code, Codex, and other agents",
];
/// User-facing names of the Warp Drive features enabled when the terminal
@@ -76,7 +75,7 @@ pub use model::{OnboardingAuthState, SelectedSettings, UICustomizationSettings};
pub use slides::ProjectOnboardingSettings;
pub use telemetry::OnboardingEvent;
pub fn init(app: &mut galaxyui::AppContext) {
pub fn init(app: &mut galaxyui_core::AppContext) {
agent_onboarding_view::init(app);
callout::init(app);
}