@kolisachint/hoocode-agent 0.4.44 → 0.4.45
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 +15 -0
- package/dist/core/keybindings.d.ts +5 -0
- package/dist/core/keybindings.d.ts.map +1 -1
- package/dist/core/keybindings.js +4 -0
- package/dist/core/keybindings.js.map +1 -1
- package/dist/core/task-store.d.ts +53 -1
- package/dist/core/task-store.d.ts.map +1 -1
- package/dist/core/task-store.js +77 -1
- package/dist/core/task-store.js.map +1 -1
- package/dist/core/tools/subagent.d.ts.map +1 -1
- package/dist/core/tools/subagent.js +33 -2
- package/dist/core/tools/subagent.js.map +1 -1
- package/dist/modes/interactive/command-executor.d.ts.map +1 -1
- package/dist/modes/interactive/command-executor.js +2 -0
- package/dist/modes/interactive/command-executor.js.map +1 -1
- package/dist/modes/interactive/components/task-panel.d.ts +17 -0
- package/dist/modes/interactive/components/task-panel.d.ts.map +1 -1
- package/dist/modes/interactive/components/task-panel.js +176 -15
- 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 +4 -0
- 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
|
@@ -492,6 +492,7 @@ export class InteractiveMode {
|
|
|
492
492
|
hint("app.model.select", "to select model"),
|
|
493
493
|
hint("app.tools.expand", "to expand tools"),
|
|
494
494
|
hint("app.thinking.toggle", "to expand thinking"),
|
|
495
|
+
hint("app.tasks.cycleView", "to cycle task panel view"),
|
|
495
496
|
hint("app.editor.external", "for external editor"),
|
|
496
497
|
rawKeyHint("/", "for commands"),
|
|
497
498
|
rawKeyHint("!", "to run bash"),
|
|
@@ -2065,6 +2066,9 @@ export class InteractiveMode {
|
|
|
2065
2066
|
this.defaultEditor.onAction("app.model.select", () => this.showModelSelector());
|
|
2066
2067
|
this.defaultEditor.onAction("app.tools.expand", () => this.toggleToolOutputExpansion());
|
|
2067
2068
|
this.defaultEditor.onAction("app.thinking.toggle", () => this.toggleThinkingBlockVisibility());
|
|
2069
|
+
this.defaultEditor.onAction("app.tasks.cycleView", () => {
|
|
2070
|
+
this.taskPanel.cycleView();
|
|
2071
|
+
});
|
|
2068
2072
|
this.defaultEditor.onAction("app.editor.external", () => this.openExternalEditor());
|
|
2069
2073
|
this.defaultEditor.onAction("app.message.followUp", () => this.handleFollowUp());
|
|
2070
2074
|
this.defaultEditor.onAction("app.message.dequeue", () => this.handleDequeue());
|