feat(protocol): add Paste request type for bracketed-paste events

feat(engine): summarize agent completion progress in UI notifications

feat(main): enable and disable bracketed paste support in terminal

fix(app_config): store API key from file as fallback for Claude provider

refactor(workflow): remove unnecessary card separator in workflow panel
This commit is contained in:
asepharyana
2026-07-15 01:54:36 +07:00
parent e13f040833
commit b92dab97e6
5 changed files with 64 additions and 17 deletions
+2
View File
@@ -45,6 +45,8 @@ pub enum ClientRequest {
shift: bool,
},
Submit(String),
/// Bulk-pasted text from a bracketed-paste event.
Paste(String),
Resize(u16, u16),
Close,
ScrollUp,