@kolisachint/hoocode-agent 0.4.13 → 0.4.14
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 +9 -0
- package/dist/core/dispatch-evaluator.d.ts +17 -0
- package/dist/core/dispatch-evaluator.d.ts.map +1 -1
- package/dist/core/dispatch-evaluator.js +44 -10
- package/dist/core/dispatch-evaluator.js.map +1 -1
- package/dist/core/task-store.d.ts +12 -7
- package/dist/core/task-store.d.ts.map +1 -1
- package/dist/core/task-store.js +23 -15
- package/dist/core/task-store.js.map +1 -1
- package/dist/core/token-budget.d.ts.map +1 -1
- package/dist/core/token-budget.js +15 -12
- package/dist/core/token-budget.js.map +1 -1
- package/dist/core/tools/subagent.d.ts +1 -1
- package/dist/core/tools/subagent.d.ts.map +1 -1
- package/dist/core/tools/subagent.js +8 -6
- package/dist/core/tools/subagent.js.map +1 -1
- package/dist/modes/interactive/components/task-panel.d.ts +1 -1
- package/dist/modes/interactive/components/task-panel.d.ts.map +1 -1
- package/dist/modes/interactive/components/task-panel.js +31 -12
- package/dist/modes/interactive/components/task-panel.js.map +1 -1
- package/dist/modes/interactive/components/tool-execution.d.ts.map +1 -1
- package/dist/modes/interactive/components/tool-execution.js +4 -2
- package/dist/modes/interactive/components/tool-execution.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +7 -5
- 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
|
@@ -2234,11 +2234,13 @@ export class InteractiveMode {
|
|
|
2234
2234
|
this.ui.requestRender();
|
|
2235
2235
|
}
|
|
2236
2236
|
else if (event.message.role === "user") {
|
|
2237
|
-
// A new user message starts a new turn:
|
|
2238
|
-
//
|
|
2239
|
-
// final status, tokens, and time)
|
|
2240
|
-
// finish — so their outcome remains
|
|
2241
|
-
|
|
2237
|
+
// A new user message starts a new turn: drop finished tasks from the
|
|
2238
|
+
// previous turn and restart numbering from #1 once the pane is empty.
|
|
2239
|
+
// Finished tasks stay visible (with their final status, tokens, and time)
|
|
2240
|
+
// until this point — not the moment they finish — so their outcome remains
|
|
2241
|
+
// glanceable for the whole turn. Active tasks are kept: a follow-up/steer
|
|
2242
|
+
// message can arrive while a subagent is still running.
|
|
2243
|
+
taskStore.reset();
|
|
2242
2244
|
this.addMessageToChat(event.message);
|
|
2243
2245
|
this.updatePendingMessagesDisplay();
|
|
2244
2246
|
this.ui.requestRender();
|