@vtxmacro/cli 2026.9.2 → 2026.9.3
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/bin/vtx-service-bootstrap.js +1 -1
- package/bin/vtx.js +5 -5
- package/package.json +1 -1
|
@@ -16,7 +16,7 @@ import { fileURLToPath } from "node:url";
|
|
|
16
16
|
// agent-cli-release.json
|
|
17
17
|
var agent_cli_release_default = {
|
|
18
18
|
package_name: "@vtxmacro/cli",
|
|
19
|
-
package_version: "2026.9.
|
|
19
|
+
package_version: "2026.9.3",
|
|
20
20
|
codex_package_name: "@openai/codex",
|
|
21
21
|
codex_version: "0.147.0",
|
|
22
22
|
copilot_sdk_package_name: "@github/copilot-sdk",
|
package/bin/vtx.js
CHANGED
|
@@ -47,7 +47,7 @@ var init_agent_cli_release = __esm({
|
|
|
47
47
|
"agent-cli-release.json"() {
|
|
48
48
|
agent_cli_release_default = {
|
|
49
49
|
package_name: "@vtxmacro/cli",
|
|
50
|
-
package_version: "2026.9.
|
|
50
|
+
package_version: "2026.9.3",
|
|
51
51
|
codex_package_name: "@openai/codex",
|
|
52
52
|
codex_version: "0.147.0",
|
|
53
53
|
copilot_sdk_package_name: "@github/copilot-sdk",
|
|
@@ -34434,6 +34434,9 @@ var init_runner = __esm({
|
|
|
34434
34434
|
} catch (error48) {
|
|
34435
34435
|
inputValidationError = error48;
|
|
34436
34436
|
}
|
|
34437
|
+
if (!options.resumeReceipt) {
|
|
34438
|
+
await persistAttempt({ phase: "claimed" }, true);
|
|
34439
|
+
}
|
|
34437
34440
|
if (attemptReceipt.phase === "claimed") {
|
|
34438
34441
|
const attemptDeadlineAtMs = Math.min(
|
|
34439
34442
|
Date.parse(claim.deadline_at),
|
|
@@ -34493,9 +34496,6 @@ var init_runner = __esm({
|
|
|
34493
34496
|
retry_count: retryCount,
|
|
34494
34497
|
next_delay_ms: retryDelayMs
|
|
34495
34498
|
});
|
|
34496
|
-
if (!options.resumeReceipt) {
|
|
34497
|
-
await persistAttempt({ phase: "claimed" }, true);
|
|
34498
|
-
}
|
|
34499
34499
|
await options.sleep(retryDelayMs, signal);
|
|
34500
34500
|
return "retry_claimed";
|
|
34501
34501
|
}
|
|
@@ -34523,7 +34523,7 @@ var init_runner = __esm({
|
|
|
34523
34523
|
await persistAttempt({
|
|
34524
34524
|
phase: providerDispatchable ? "dispatched" : "started",
|
|
34525
34525
|
dispatch_outcome: providerDispatchable ? "outcome_unknown" : "not_dispatched"
|
|
34526
|
-
}
|
|
34526
|
+
});
|
|
34527
34527
|
}
|
|
34528
34528
|
let adapterResult;
|
|
34529
34529
|
let heartbeatFailure;
|