@vm0/cli 9.145.16 → 9.145.17
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.
|
@@ -74083,7 +74083,7 @@ if (DSN) {
|
|
|
74083
74083
|
init2({
|
|
74084
74084
|
dsn: DSN,
|
|
74085
74085
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
74086
|
-
release: "9.145.
|
|
74086
|
+
release: "9.145.17",
|
|
74087
74087
|
sendDefaultPii: false,
|
|
74088
74088
|
tracesSampleRate: 0,
|
|
74089
74089
|
shutdownTimeout: 500,
|
|
@@ -74102,7 +74102,7 @@ if (DSN) {
|
|
|
74102
74102
|
}
|
|
74103
74103
|
});
|
|
74104
74104
|
setContext("cli", {
|
|
74105
|
-
version: "9.145.
|
|
74105
|
+
version: "9.145.17",
|
|
74106
74106
|
command: process.argv.slice(2).join(" ")
|
|
74107
74107
|
});
|
|
74108
74108
|
setContext("runtime", {
|
|
@@ -103504,6 +103504,15 @@ var chatMessagesContract = c13.router({
|
|
|
103504
103504
|
// Lets the client render an optimistic row and reconcile with the
|
|
103505
103505
|
// server row by id — no temp-id swap, no React remount.
|
|
103506
103506
|
clientMessageId: external_exports.string().uuid().optional(),
|
|
103507
|
+
/**
|
|
103508
|
+
* Goal mode: when `true`, this message starts a self-continuing chain
|
|
103509
|
+
* that runs up to a server-defined turn budget. Subsequent turns are
|
|
103510
|
+
* appended automatically by the run-completion callback until the
|
|
103511
|
+
* agent emits `[GOAL_DONE]`, the budget is exhausted, the run fails,
|
|
103512
|
+
* or the user interrupts. Server applies the budget; clients cannot
|
|
103513
|
+
* pick it. Gated by the Goal feature switch.
|
|
103514
|
+
*/
|
|
103515
|
+
goal: external_exports.boolean().optional(),
|
|
103507
103516
|
// Test-only escape hatch: when the host runner has USE_MOCK_CODEX
|
|
103508
103517
|
// set (CI default), allow the request to bypass the mock and execute
|
|
103509
103518
|
// the real codex CLI. Mirrors `debugNoMockClaude` / `debugNoMockCodex`
|
|
@@ -103527,7 +103536,8 @@ var chatMessagesContract = c13.router({
|
|
|
103527
103536
|
attachFiles: external_exports.undefined().optional(),
|
|
103528
103537
|
debugNoMockClaude: external_exports.undefined().optional(),
|
|
103529
103538
|
debugNoMockCodex: external_exports.undefined().optional(),
|
|
103530
|
-
interruptsRunId: external_exports.undefined().optional()
|
|
103539
|
+
interruptsRunId: external_exports.undefined().optional(),
|
|
103540
|
+
goal: external_exports.undefined().optional()
|
|
103531
103541
|
}),
|
|
103532
103542
|
external_exports.object({
|
|
103533
103543
|
agentId: external_exports.string().min(1),
|
|
@@ -103542,7 +103552,8 @@ var chatMessagesContract = c13.router({
|
|
|
103542
103552
|
attachFiles: external_exports.undefined().optional(),
|
|
103543
103553
|
debugNoMockClaude: external_exports.undefined().optional(),
|
|
103544
103554
|
debugNoMockCodex: external_exports.undefined().optional(),
|
|
103545
|
-
revokesMessageId: external_exports.undefined().optional()
|
|
103555
|
+
revokesMessageId: external_exports.undefined().optional(),
|
|
103556
|
+
goal: external_exports.undefined().optional()
|
|
103546
103557
|
})
|
|
103547
103558
|
]),
|
|
103548
103559
|
responses: {
|
|
@@ -120701,6 +120712,12 @@ var FEATURE_SWITCHES = {
|
|
|
120701
120712
|
enabled: false,
|
|
120702
120713
|
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
120703
120714
|
},
|
|
120715
|
+
["goal" /* Goal */]: {
|
|
120716
|
+
maintainer: "ethan@vm0.ai",
|
|
120717
|
+
description: "Enable Codex-style goal mode in web chat: typing `/go <objective>` starts a self-continuing chain that runs up to 10 turns until the agent emits the [GOAL_DONE] sentinel, the budget is exhausted, the run fails, or the user interrupts.",
|
|
120718
|
+
enabled: false,
|
|
120719
|
+
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
120720
|
+
},
|
|
120704
120721
|
["queueMessage" /* QueueMessage */]: {
|
|
120705
120722
|
maintainer: "linghan@vm0.ai",
|
|
120706
120723
|
description: "Allow keyboard sends during an active chat thread run to append the draft to that thread's pending message queue.",
|
|
@@ -122268,4 +122285,4 @@ undici/lib/web/fetch/body.js:
|
|
|
122268
122285
|
undici/lib/web/websocket/frame.js:
|
|
122269
122286
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
122270
122287
|
*/
|
|
122271
|
-
//# sourceMappingURL=chunk-
|
|
122288
|
+
//# sourceMappingURL=chunk-JYKL7SL4.js.map
|