feat: expand Galaxy agent and remote tooling

Add Wormhole remote helpers, provider and agent improvements, filesystem diagnostics, model metadata support, and schema-aware settings IntelliSense.
This commit is contained in:
2026-08-23 13:55:47 -05:00
parent f17642fc62
commit 7c106eecd5
147 changed files with 2208 additions and 1514 deletions
+4 -4
View File
@@ -92,7 +92,7 @@ pub fn enter_local_subshell_command(shell: &str) -> TestStep {
}
pub fn assert_subshell_banner_is_showing() -> TestStep {
TestStep::new("Assert the Warpify banner is visible")
TestStep::new("Assert the Wormhole banner is visible")
.add_assertion(move |app, window_id| {
let terminal_view = single_terminal_view(app, window_id);
terminal_view.read(app, |view, _ctx| {
@@ -102,7 +102,7 @@ pub fn assert_subshell_banner_is_showing() -> TestStep {
.block_list_mut()
.active_block()
.block_banner(),
Some(WithinBlockBanner::WarpifyBanner(..))
Some(WithinBlockBanner::WormholeBanner(..))
))
})
})
@@ -132,10 +132,10 @@ pub fn assert_subshell_is_bootstrapped(tab_index: usize, pane_index: usize) -> T
};
match rich_content_type {
Some(RichContentType::WarpifySuccessBlock) => {}
Some(RichContentType::WormholeSuccessBlock) => {}
_ => {
return AssertionOutcome::failure(
"Warpify success block wasn't added to the blocklist".to_owned(),
"Wormhole success block wasn't added to the blocklist".to_owned(),
);
}
}