@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.
@@ -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 (footer task list)
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 footer when the task list changes (e.g. subagent tasks).
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
  });