devez-vibe 1.5.32 → 1.5.34
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/bin/dvz.exe
CHANGED
|
Binary file
|
|
@@ -1748,6 +1748,15 @@ function firstLine(value, limit) {
|
|
|
1748
1748
|
}
|
|
1749
1749
|
|
|
1750
1750
|
function emitSubagents(session) {
|
|
1751
|
+
// 하위 에이전트가 도는 동안 주기적으로 목록을 다시 알린다. 화면이 이
|
|
1752
|
+
// 생존 신호로 살아 있는 행과 종료 신호를 놓친 행을 구분한다.
|
|
1753
|
+
if (session.subagents.size && !session.subagentPulse) {
|
|
1754
|
+
session.subagentPulse = setInterval(() => emitSubagents(session), 5000);
|
|
1755
|
+
session.subagentPulse.unref?.();
|
|
1756
|
+
} else if (!session.subagents.size && session.subagentPulse) {
|
|
1757
|
+
clearInterval(session.subagentPulse);
|
|
1758
|
+
session.subagentPulse = null;
|
|
1759
|
+
}
|
|
1751
1760
|
notify("turn/subagents/updated", {
|
|
1752
1761
|
threadId: session.id,
|
|
1753
1762
|
turnId: session.turn?.id,
|