zidane 5.1.19 → 5.1.21
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/dist/tools-CMVruxF0.js.map +1 -1
- package/dist/tui.js +4 -0
- package/dist/tui.js.map +1 -1
- package/docs/ARCHITECTURE.md +34 -2
- package/docs/CHAT.md +104 -33
- package/docs/SKILL.md +3 -2
- package/docs/TUI.md +25 -8
- package/package.json +1 -1
package/dist/tui.js
CHANGED
|
@@ -8207,6 +8207,9 @@ function AppShell() {
|
|
|
8207
8207
|
agent.hooks.hook("child:stream:end", ({ childId }) => {
|
|
8208
8208
|
stream.flushAndUpdate((prev) => finalizeStreamingMarkdownForOwner(prev, childId));
|
|
8209
8209
|
});
|
|
8210
|
+
agent.hooks.hook("agent:done", () => {
|
|
8211
|
+
pendingAnnotationsRef.current.clear();
|
|
8212
|
+
});
|
|
8210
8213
|
return agent;
|
|
8211
8214
|
}, [
|
|
8212
8215
|
providerRegistry,
|
|
@@ -8257,6 +8260,7 @@ function AppShell() {
|
|
|
8257
8260
|
setQueueSelectionIndex(null);
|
|
8258
8261
|
runningRef.current = false;
|
|
8259
8262
|
sessionSafelistRef.current.clear();
|
|
8263
|
+
pendingAnnotationsRef.current.clear();
|
|
8260
8264
|
}, [
|
|
8261
8265
|
stream,
|
|
8262
8266
|
denyAll,
|