devez-vibe 1.6.28 → 1.6.30

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
@@ -1062,9 +1062,6 @@ async function createSession(params, resumeId) {
1062
1062
  subagents: new Map(),
1063
1063
  knownSubagents: new Map(),
1064
1064
  hiddenSubagentTasks: new Set(),
1065
- // level 신호는 CLI 프로세스가 뜰 때 아무것도 보내지 않는다. 새 세션은 빈
1066
- // 집합에서 시작해야 이전 프로세스의 개수가 남지 않는다.
1067
- backgroundTasks: 0,
1068
1065
  subagentPulse: null,
1069
1066
  lastContextUsage: null,
1070
1067
  lastContextWindow: 0,
@@ -1756,19 +1753,7 @@ function finishStructuredSubagent(session, message, kind, text) {
1756
1753
  return true;
1757
1754
  }
1758
1755
 
1759
- // background_tasks_changed는 살아 있는 백그라운드 작업 전체를 담은 level 신호다.
1760
- // SDK 문서가 못박은 대로 매번 집합을 통째로 갈아끼우고, 시작·완료 edge와는 짝짓지
1761
- // 않는다. 순서가 보장되지 않아 섞으면 오히려 유령 작업이 남는다. 목록에는 위임
1762
- // 에이전트뿐 아니라 백그라운드로 돌린 명령도 들어오므로 종류는 가리지 않는다.
1763
- function emitBackgroundTasks(session, tasks) {
1764
- const count = Array.isArray(tasks) ? tasks.length : 0;
1765
- if (count === session.backgroundTasks) return;
1766
- session.backgroundTasks = count;
1767
- notify("turn/backgroundTasks/updated", { threadId: session.id, count });
1768
- }
1769
-
1770
1756
  function syncBackgroundSubagents(session, tasks) {
1771
- emitBackgroundTasks(session, tasks);
1772
1757
  const live = (Array.isArray(tasks) ? tasks : []).filter((task) => {
1773
1758
  const taskId = firstLine(task?.task_id || "", 80);
1774
1759
  return !taskId || !session.hiddenSubagentTasks?.has(taskId);
@@ -1976,7 +1961,6 @@ function clearSubagents(session) {
1976
1961
  const changed = session.subagents.size > 0;
1977
1962
  session.subagents.clear();
1978
1963
  session.hiddenSubagentTasks?.clear();
1979
- emitBackgroundTasks(session, []);
1980
1964
  if (session.subagentPulse) {
1981
1965
  clearInterval(session.subagentPulse);
1982
1966
  session.subagentPulse = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devez-vibe",
3
- "version": "1.6.28",
3
+ "version": "1.6.30",
4
4
  "description": "Stable terminal UI for Codex and Claude Agent SDK",
5
5
  "keywords": [
6
6
  "codex",