@vm0/cli 9.145.15 → 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.",
|
|
@@ -120745,6 +120762,12 @@ var FEATURE_SWITCHES = {
|
|
|
120745
120762
|
enabled: false,
|
|
120746
120763
|
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
120747
120764
|
},
|
|
120765
|
+
["apiBackendMutations" /* ApiBackendMutations */]: {
|
|
120766
|
+
maintainer: "ethan@vm0.ai",
|
|
120767
|
+
description: "Route platform mutation traffic (POST/PUT/PATCH/DELETE) to the api backend host independent of ApiBackend. When ApiBackend is OFF and this is ON, GETs stay on www while mutations use api.vm0.ai; ported mutation routes are served there and unported routes fall through to web via the api app's notFound proxy. When ApiBackend is ON, mutations follow the host-level switch regardless of this flag. Used during Stage 3 of the api-backend migration to roll out mutation routes per-org without flipping the host-level ApiBackend flag.",
|
|
120768
|
+
enabled: false,
|
|
120769
|
+
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
120770
|
+
},
|
|
120748
120771
|
["connectorCategories" /* ConnectorCategories */]: {
|
|
120749
120772
|
maintainer: "ethan@vm0.ai",
|
|
120750
120773
|
description: "Show category sections and the hover-reveal outline menu on the Connectors settings page. Staff-only during rollout.",
|
|
@@ -122262,4 +122285,4 @@ undici/lib/web/fetch/body.js:
|
|
|
122262
122285
|
undici/lib/web/websocket/frame.js:
|
|
122263
122286
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
122264
122287
|
*/
|
|
122265
|
-
//# sourceMappingURL=chunk-
|
|
122288
|
+
//# sourceMappingURL=chunk-JYKL7SL4.js.map
|