Fix cursor focus and selection in input box, add AWS env var warning box, and remove AWS Bedrock login banner

This commit is contained in:
2026-07-02 14:54:15 -05:00
parent 4770ac06b5
commit 3769646ca6
1194 changed files with 5312 additions and 8032 deletions
+4 -4
View File
@@ -1,11 +1,11 @@
use std::path::PathBuf;
use galaxy_util::host_id::HostId;
use galaxy_util::local_or_remote_path::LocalOrRemotePath;
use galaxy_util::remote_path::RemotePath;
use galaxy_util::standardized_path::StandardizedPath;
use thiserror::Error;
use warp_multi_agent_api as api;
use warp_util::host_id::HostId;
use warp_util::local_or_remote_path::LocalOrRemotePath;
use warp_util::remote_path::RemotePath;
use warp_util::standardized_path::StandardizedPath;
use crate::agent::action_result::{AnyFileContent, FileContext};
use crate::skills::{ParsedSkill, SkillProvider, SkillReference, SkillScope};
+4 -4
View File
@@ -1,8 +1,8 @@
use galaxy_util::host_id::HostId;
use galaxy_util::local_or_remote_path::LocalOrRemotePath;
use galaxy_util::remote_path::RemotePath;
use galaxy_util::standardized_path::StandardizedPath;
use warp_multi_agent_api as api;
use warp_util::host_id::HostId;
use warp_util::local_or_remote_path::LocalOrRemotePath;
use warp_util::remote_path::RemotePath;
use warp_util::standardized_path::StandardizedPath;
use super::{
skill_reference_from_api_skill_ref, skill_reference_from_read_skill_ref, SkillConversionError,
+1 -1
View File
@@ -4,10 +4,10 @@ use std::ops::Range;
use std::path::Path;
use anyhow::Result;
use galaxy_util::local_or_remote_path::LocalOrRemotePath;
use lazy_static::lazy_static;
use regex::Regex;
use thiserror::Error;
use warp_util::local_or_remote_path::LocalOrRemotePath;
use super::parser::parse_markdown_content;
use super::skill_provider::{get_provider_for_path, get_scope_for_path, SkillProvider, SkillScope};
+1 -1
View File
@@ -1,7 +1,7 @@
use std::path::PathBuf;
use galaxy_util::local_or_remote_path::LocalOrRemotePath;
use tempfile::TempDir;
use warp_util::local_or_remote_path::LocalOrRemotePath;
use super::*;
+1 -1
View File
@@ -1,7 +1,7 @@
use std::fs;
use galaxy_util::local_or_remote_path::LocalOrRemotePath;
use tempfile::tempdir;
use warp_util::local_or_remote_path::LocalOrRemotePath;
use super::*;
+2 -2
View File
@@ -7,12 +7,12 @@ use std::path::{Path, PathBuf};
use std::sync::LazyLock;
use dirs::home_dir;
use serde::{Deserialize, Serialize};
use strum_macros::{Display, EnumString, VariantNames};
use galaxy_core::ui::color::CLAUDE_ORANGE;
use galaxy_core::ui::icons::Icon;
use galaxy_core::ui::theme::Fill;
use galaxy_util::local_or_remote_path::LocalOrRemotePath;
use serde::{Deserialize, Serialize};
use strum_macros::{Display, EnumString, VariantNames};
/// Represents a skill provider/origin (Agents, Claude, Codex, or Warp).
#[derive(
+6 -6
View File
@@ -1,7 +1,7 @@
use warp_util::host_id::HostId;
use warp_util::local_or_remote_path::LocalOrRemotePath;
use warp_util::remote_path::RemotePath;
use warp_util::standardized_path::StandardizedPath;
use galaxy_util::host_id::HostId;
use galaxy_util::local_or_remote_path::LocalOrRemotePath;
use galaxy_util::remote_path::RemotePath;
use galaxy_util::standardized_path::StandardizedPath;
use super::{
get_provider_for_path, get_scope_for_path, home_skills_path,
@@ -12,13 +12,13 @@ use super::{
fn warp_home_skills_path_uses_warp_home_path() {
assert_eq!(
home_skills_path(SkillProvider::Warp),
galaxy_core::paths::warp_home_skills_dir()
galaxy_core::paths::galaxy_home_skills_dir()
);
}
#[test]
fn warp_home_skill_path_is_home_warp_skill() {
let Some(warp_home_skills_dir) = galaxy_core::paths::warp_home_skills_dir() else {
let Some(warp_home_skills_dir) = galaxy_core::paths::galaxy_home_skills_dir() else {
eprintln!("Skipping test: home directory not available");
return;
};
+1 -1
View File
@@ -1,7 +1,7 @@
use std::fmt;
use galaxy_util::local_or_remote_path::LocalOrRemotePath;
use serde::{Deserialize, Serialize};
use warp_util::local_or_remote_path::LocalOrRemotePath;
/// An unique reference to a skill.
#[derive(Debug, Clone, PartialEq, Eq, Hash, Deserialize, Serialize)]