@kenkaiiii/gg-boss 4.3.157 → 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/{chunk-FXGI4NWS.js → chunk-ILOJDKGE.js} +34850 -33669
- package/dist/{chunk-FXGI4NWS.js.map → chunk-ILOJDKGE.js.map} +1 -1
- package/dist/cli.js +9 -3
- package/dist/cli.js.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +4 -4
package/dist/cli.js
CHANGED
|
@@ -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-
|
|
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.
|
|
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(
|
|
@@ -1572,7 +1576,6 @@ var SHORT_MODELS = {
|
|
|
1572
1576
|
"claude-haiku-4-5": "Haiku",
|
|
1573
1577
|
"claude-haiku-4-5-20251001": "Haiku",
|
|
1574
1578
|
"gpt-5.5": "GPT-5.5",
|
|
1575
|
-
"gpt-5.5-pro": "GPT-5.5 Pro",
|
|
1576
1579
|
"gpt-5.4": "GPT-5.4",
|
|
1577
1580
|
"gpt-5.4-mini": "GPT-5.4 Mini",
|
|
1578
1581
|
"gpt-5.3-codex": "GPT-5.3 Codex"
|
|
@@ -3441,6 +3444,9 @@ async function runOrchestrator(args) {
|
|
|
3441
3444
|
log("INFO", "cli", "linked projects", {
|
|
3442
3445
|
projects: args.projects.map((p) => p.name).join(",")
|
|
3443
3446
|
});
|
|
3447
|
+
setStreamDiagnostic((phase, data) => {
|
|
3448
|
+
log("INFO", "stream", phase, data);
|
|
3449
|
+
});
|
|
3444
3450
|
const updateMessage = checkAndAutoUpdate(VERSION);
|
|
3445
3451
|
if (updateMessage) log("INFO", "auto_update", updateMessage);
|
|
3446
3452
|
const boss = new GGBoss({
|