@kenkaiiii/gg-boss 4.3.146 → 4.3.147
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
|
@@ -43,7 +43,7 @@ import {
|
|
|
43
43
|
use_app_default,
|
|
44
44
|
use_input_default,
|
|
45
45
|
use_stdout_default
|
|
46
|
-
} from "./chunk-
|
|
46
|
+
} from "./chunk-ZQ7U73JW.js";
|
|
47
47
|
import "./chunk-QT366Y52.js";
|
|
48
48
|
import {
|
|
49
49
|
source_default
|
|
@@ -164,7 +164,7 @@ init_esm_shims();
|
|
|
164
164
|
// package.json
|
|
165
165
|
var package_default = {
|
|
166
166
|
name: "@kenkaiiii/gg-boss",
|
|
167
|
-
version: "4.3.
|
|
167
|
+
version: "4.3.147",
|
|
168
168
|
type: "module",
|
|
169
169
|
description: "Orchestrator agent that drives multiple ggcoder sessions across projects from a single chat",
|
|
170
170
|
license: "MIT",
|
|
@@ -2289,6 +2289,16 @@ async function main() {
|
|
|
2289
2289
|
if (isContinue) args.continueRecent = true;
|
|
2290
2290
|
await runOrchestrator(args);
|
|
2291
2291
|
}
|
|
2292
|
+
process.on("uncaughtException", (err) => {
|
|
2293
|
+
const message = err instanceof Error ? err.message : String(err);
|
|
2294
|
+
const stack = err instanceof Error ? err.stack : void 0;
|
|
2295
|
+
log("ERROR", "uncaught_exception", message, { stack });
|
|
2296
|
+
});
|
|
2297
|
+
process.on("unhandledRejection", (reason) => {
|
|
2298
|
+
const message = reason instanceof Error ? reason.message : String(reason);
|
|
2299
|
+
const stack = reason instanceof Error ? reason.stack : void 0;
|
|
2300
|
+
log("ERROR", "unhandled_rejection", message, { stack });
|
|
2301
|
+
});
|
|
2292
2302
|
main().catch((err) => {
|
|
2293
2303
|
const message = err instanceof Error ? err.message : String(err);
|
|
2294
2304
|
process.stderr.write(source_default.hex(COLORS.error)(`
|