@kenkaiiii/gg-boss 4.3.156 → 4.3.158

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/cli.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env -S node --max-old-space-size=8192 --expose-gc
2
2
  import { createRequire as __createRequire } from "node:module"; const require = __createRequire(import.meta.url);
3
3
  import {
4
4
  ActivityIndicator,
@@ -36,6 +36,7 @@ import {
36
36
  require_jsx_runtime,
37
37
  require_react,
38
38
  saveSettings,
39
+ setStreamDiagnostic,
39
40
  subscribeToBossStore,
40
41
  tasksStore,
41
42
  useAnimationActive,
@@ -48,7 +49,7 @@ import {
48
49
  use_app_default,
49
50
  use_input_default,
50
51
  use_stdout_default
51
- } from "./chunk-KWWLOD25.js";
52
+ } from "./chunk-ILOJDKGE.js";
52
53
  import "./chunk-QT366Y52.js";
53
54
  import {
54
55
  source_default
@@ -341,7 +342,7 @@ init_esm_shims();
341
342
  // package.json
342
343
  var package_default = {
343
344
  name: "@kenkaiiii/gg-boss",
344
- version: "4.3.156",
345
+ version: "4.3.158",
345
346
  type: "module",
346
347
  description: "Orchestrator agent that drives multiple ggcoder sessions across projects from a single chat",
347
348
  license: "MIT",
@@ -1048,6 +1049,9 @@ async function runBossServeMode(options) {
1048
1049
  workerModel: options.workerModel,
1049
1050
  projectCount: 0
1050
1051
  });
1052
+ setStreamDiagnostic((phase, data) => {
1053
+ log("INFO", "stream", phase, data);
1054
+ });
1051
1055
  const links = await loadLinks();
1052
1056
  if (links.projects.length === 0) {
1053
1057
  console.error(
@@ -1262,11 +1266,7 @@ Send the number, or \`/scope <name>\`.`
1262
1266
  }
1263
1267
  if (cmd === "status") {
1264
1268
  const state = getBossState();
1265
- const lines = [
1266
- `*${BRAND}* \u2014 ${state.bossModel}`,
1267
- `Scope *${state.scope}*`,
1268
- ""
1269
- ];
1269
+ const lines = [`*${BRAND}* \u2014 ${state.bossModel}`, `Scope *${state.scope}*`, ""];
1270
1270
  lines.push("*Workers*");
1271
1271
  for (const w of state.workers) {
1272
1272
  const dot = w.status === "working" ? "\u25CF" : w.status === "error" ? "\u2717" : "\u25CB";
@@ -1576,7 +1576,6 @@ var SHORT_MODELS = {
1576
1576
  "claude-haiku-4-5": "Haiku",
1577
1577
  "claude-haiku-4-5-20251001": "Haiku",
1578
1578
  "gpt-5.5": "GPT-5.5",
1579
- "gpt-5.5-pro": "GPT-5.5 Pro",
1580
1579
  "gpt-5.4": "GPT-5.4",
1581
1580
  "gpt-5.4-mini": "GPT-5.4 Mini",
1582
1581
  "gpt-5.3-codex": "GPT-5.3 Codex"
@@ -3445,6 +3444,9 @@ async function runOrchestrator(args) {
3445
3444
  log("INFO", "cli", "linked projects", {
3446
3445
  projects: args.projects.map((p) => p.name).join(",")
3447
3446
  });
3447
+ setStreamDiagnostic((phase, data) => {
3448
+ log("INFO", "stream", phase, data);
3449
+ });
3448
3450
  const updateMessage = checkAndAutoUpdate(VERSION);
3449
3451
  if (updateMessage) log("INFO", "auto_update", updateMessage);
3450
3452
  const boss = new GGBoss({