@kolisachint/hoocode-agent 0.4.3 → 0.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/dist/core/task-store.d.ts +2 -1
- package/dist/core/task-store.d.ts.map +1 -1
- package/dist/core/task-store.js +8 -1
- package/dist/core/task-store.js.map +1 -1
- package/dist/core/tools/subagent.d.ts +2 -1
- package/dist/core/tools/subagent.d.ts.map +1 -1
- package/dist/core/tools/subagent.js +3 -10
- package/dist/core/tools/subagent.js.map +1 -1
- package/dist/modes/interactive/components/task-panel.d.ts.map +1 -1
- package/dist/modes/interactive/components/task-panel.js +4 -7
- package/dist/modes/interactive/components/task-panel.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +2 -2
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package.json +1 -1
- package/package.json +4 -4
|
@@ -152,7 +152,7 @@ export class InteractiveMode {
|
|
|
152
152
|
skillCommands = new Map();
|
|
153
153
|
// Agent subscription unsubscribe function
|
|
154
154
|
unsubscribe;
|
|
155
|
-
// Task store subscription unsubscribe function (
|
|
155
|
+
// Task store subscription unsubscribe function (task panel)
|
|
156
156
|
taskStoreUnsubscribe;
|
|
157
157
|
signalCleanupHandlers = [];
|
|
158
158
|
// Track if editor is in bash mode (text starts with !)
|
|
@@ -470,7 +470,7 @@ export class InteractiveMode {
|
|
|
470
470
|
this.footerDataProvider.onBranchChange(() => {
|
|
471
471
|
this.ui.requestRender();
|
|
472
472
|
});
|
|
473
|
-
// Re-render the
|
|
473
|
+
// Re-render the UI when the task list changes (task panel shows active tasks).
|
|
474
474
|
this.taskStoreUnsubscribe = taskStore.subscribe(() => {
|
|
475
475
|
this.ui.requestRender();
|
|
476
476
|
});
|