@vtxmacro/cli 2026.8.46 → 2026.8.47
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.js +4 -3
- package/package.json +1 -1
package/bin/vtx.js
CHANGED
|
@@ -38,7 +38,7 @@ var init_agent_cli_release = __esm({
|
|
|
38
38
|
"agent-cli-release.json"() {
|
|
39
39
|
agent_cli_release_default = {
|
|
40
40
|
package_name: "@vtxmacro/cli",
|
|
41
|
-
package_version: "2026.8.
|
|
41
|
+
package_version: "2026.8.47",
|
|
42
42
|
codex_package_name: "@openai/codex",
|
|
43
43
|
codex_version: "0.147.0",
|
|
44
44
|
copilot_sdk_package_name: "@github/copilot-sdk",
|
|
@@ -18431,11 +18431,12 @@ var init_mcp_client = __esm({
|
|
|
18431
18431
|
const retryableClaimRejection = name === "inference.job.claim" && !definitivelyNotApplied && (retryableInfrastructureRejection || errorText.includes("External inference host is not live enough to claim work") || errorText.includes("External inference host request generation is stale"));
|
|
18432
18432
|
const retryableHeartbeatClockSkew = name === "inference.host.heartbeat" && definitivelyNotApplied;
|
|
18433
18433
|
const retryableAdvertisementClockSkew = (name === "inference.host.register" || name === "inference.host.advertise") && definitivelyNotApplied;
|
|
18434
|
+
const staleHostHeartbeatGeneration = name === "inference.host.heartbeat" && errorText.includes("Heartbeat generations do not match the current host authority.");
|
|
18434
18435
|
throw new ExternalInferenceMcpError(
|
|
18435
|
-
"tool_rejected",
|
|
18436
|
+
staleHostHeartbeatGeneration ? "generation_stale" : "tool_rejected",
|
|
18436
18437
|
`Insights MCP rejected ${name}.`,
|
|
18437
18438
|
{
|
|
18438
|
-
definitivelyNotApplied,
|
|
18439
|
+
definitivelyNotApplied: definitivelyNotApplied || staleHostHeartbeatGeneration,
|
|
18439
18440
|
// Claim polling is an idempotent control-plane operation. During an
|
|
18440
18441
|
// API rotation the MCP server can return a tool error after the
|
|
18441
18442
|
// request reached the application boundary, so retain and replay
|