-
-
Notifications
You must be signed in to change notification settings - Fork 12
feat: implement unified subtask/subagent abstraction with enhanced sidebar display #103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 8 commits
c44f829
56f6cac
4890140
34ff5a8
6385825
3281518
e8d3dc0
3627b8f
e26e939
b01148b
9085c61
4c36058
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
|
devin-ai-integration[bot] marked this conversation as resolved.
|
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -261,6 +261,16 @@ impl ThreadManager { | |||||||||||||||||||||||||||||||||||||||||||||||
| true | ||||||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||
| /// Clear the foreground — no thread is active (background all). | ||||||||||||||||||||||||||||||||||||||||||||||||
| pub fn clear_foreground(&mut self) { | ||||||||||||||||||||||||||||||||||||||||||||||||
| if let Some(old_id) = self.foreground_id { | ||||||||||||||||||||||||||||||||||||||||||||||||
| if let Some(t) = self.threads.get_mut(&old_id) { | ||||||||||||||||||||||||||||||||||||||||||||||||
| t.is_foreground = false; | ||||||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||||||
| self.foreground_id = None; | ||||||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+265
to
+272
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🟡 Every other state-changing method in
Suggested change
Was this helpful? React with 👍 or 👎 to provide feedback.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Acknowledged — this is a valid consistency concern. The current call site in the gateway ( |
||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||
| /// Rename a thread. | ||||||||||||||||||||||||||||||||||||||||||||||||
| pub fn rename(&mut self, id: ThreadId, new_label: impl Into<String>) -> bool { | ||||||||||||||||||||||||||||||||||||||||||||||||
| if let Some(thread) = self.threads.get_mut(&id) { | ||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||
Uh oh!
There was an error while loading. Please reload this page.