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
@@ -41,6 +41,9 @@ pub enum SlashCommandRequest {
skill: ai::skills::ParsedSkill,
user_query: Option<String>,
},
Summarize {
prompt: Option<String>,
},
}
impl SlashCommandRequest {
@@ -106,7 +109,7 @@ impl SlashCommandRequest {
ctx,
);
let entrypoint = self.entrypoint();
let is_summarize = matches!(self, Self::Summarize { .. });
let _is_summarize = matches!(self, Self::Summarize { .. });
let inputs = self.input(
context,
prompt_files,
@@ -300,7 +303,8 @@ impl SlashCommandRequest {
SlashCommandRequest::CreateNewProject { .. }
| SlashCommandRequest::CreateEnvironment { .. }
| SlashCommandRequest::FetchReviewComments { .. }
| SlashCommandRequest::InvokeSkill { .. } => EntrypointType::UserInitiated,
| SlashCommandRequest::InvokeSkill { .. }
| SlashCommandRequest::Summarize { .. } => EntrypointType::UserInitiated,
}
}
}