@integrity-labs/agt-cli 0.28.487 → 0.28.489
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/bin/agt.js +4 -4
- package/dist/{chunk-XZI5IHQP.js → chunk-34E3FHOS.js} +2 -2
- package/dist/chunk-34E3FHOS.js.map +1 -0
- package/dist/{chunk-H5H4IVQC.js → chunk-46GY6S7I.js} +35 -3
- package/dist/chunk-46GY6S7I.js.map +1 -0
- package/dist/{claude-pair-runtime-FEVTBAHV.js → claude-pair-runtime-GJF64TMZ.js} +2 -2
- package/dist/lib/manager-worker.js +10 -10
- package/dist/{persistent-session-3LWKJAAP.js → persistent-session-Y3WIXJPW.js} +2 -2
- package/dist/{responsiveness-probe-AAVWTFJN.js → responsiveness-probe-AEFEFKOQ.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-H5H4IVQC.js.map +0 -1
- package/dist/chunk-XZI5IHQP.js.map +0 -1
- /package/dist/{claude-pair-runtime-FEVTBAHV.js.map → claude-pair-runtime-GJF64TMZ.js.map} +0 -0
- /package/dist/{persistent-session-3LWKJAAP.js.map → persistent-session-Y3WIXJPW.js.map} +0 -0
- /package/dist/{responsiveness-probe-AAVWTFJN.js.map → responsiveness-probe-AEFEFKOQ.js.map} +0 -0
|
@@ -30,7 +30,7 @@ import {
|
|
|
30
30
|
resolveConnectivityProbe,
|
|
31
31
|
worseConnectivityOutcome,
|
|
32
32
|
wrapScheduledTaskPrompt
|
|
33
|
-
} from "./chunk-
|
|
33
|
+
} from "./chunk-34E3FHOS.js";
|
|
34
34
|
import {
|
|
35
35
|
parsePsRows
|
|
36
36
|
} from "./chunk-XWVM4KPK.js";
|
|
@@ -3094,6 +3094,25 @@ function buildMcpJson(input) {
|
|
|
3094
3094
|
args: [localXeroMcpPath],
|
|
3095
3095
|
env: {
|
|
3096
3096
|
...brokerMode ? {} : { XERO_CLIENT_BEARER_TOKEN: "${XERO_ACCESS_TOKEN}" },
|
|
3097
|
+
// ENG-8264: broker mode must ALSO declare which env var holds the
|
|
3098
|
+
// credential, or dropping the `${XERO_ACCESS_TOKEN}` reference above
|
|
3099
|
+
// silently re-classifies it. `findMcpServersUsingVars` only sees vars
|
|
3100
|
+
// referenced as `${VAR}`, so with that reference gone the manager's
|
|
3101
|
+
// `envOnlyRespawnVars` treats XERO_ACCESS_TOKEN as env-only and
|
|
3102
|
+
// schedules a FULL SESSION RESPAWN on every OAuth rotation (~30 min) -
|
|
3103
|
+
// trading the ~20-min child kill ENG-5318 fixed for something worse.
|
|
3104
|
+
// Observed live on stirling at 2026-08-02T07:29:34Z.
|
|
3105
|
+
//
|
|
3106
|
+
// This is a declaration of fact, not a carve-out: in broker mode the
|
|
3107
|
+
// server fetches the freshest token from the credential broker on every
|
|
3108
|
+
// call (that is what AGT_INTEGRATION_ID/AGT_AGENT_ID above are for), so
|
|
3109
|
+
// a rotation genuinely needs no restart - exactly what
|
|
3110
|
+
// AGT_REMOTE_MCP_TOKEN_VAR means. `liveProxyTokenVars` reads this key
|
|
3111
|
+
// off ANY mcpServers entry, not only remote-proxy ones, so the manager
|
|
3112
|
+
// filters the var out of the respawn set. The `${VAR}` reference stays
|
|
3113
|
+
// absent, so stale-mcp-reaper stays quiet too: both restart paths
|
|
3114
|
+
// satisfied at once.
|
|
3115
|
+
...brokerMode ? { AGT_REMOTE_MCP_TOKEN_VAR: "XERO_ACCESS_TOKEN" } : {},
|
|
3097
3116
|
XERO_TENANT_ID: "${XERO_TENANT_ID}",
|
|
3098
3117
|
AGT_HOST: "${AGT_HOST}",
|
|
3099
3118
|
AGT_TOKEN: "${AGT_TOKEN}",
|
|
@@ -4285,6 +4304,13 @@ ${sections}`
|
|
|
4285
4304
|
const brokerMode = Boolean(agentId && xeroIntegration.id);
|
|
4286
4305
|
const xeroEnv = {
|
|
4287
4306
|
...brokerMode ? {} : { XERO_CLIENT_BEARER_TOKEN: "${XERO_ACCESS_TOKEN}" },
|
|
4307
|
+
// ENG-8264: declare the credential var in broker mode so the manager
|
|
4308
|
+
// does not re-classify it as env-only and respawn the whole session on
|
|
4309
|
+
// every rotation. Mirrors the buildMcpJson path above - see that block
|
|
4310
|
+
// for the full rationale. Kept in both renderers deliberately: they
|
|
4311
|
+
// produce the same entry by two routes, and a fix in only one of them
|
|
4312
|
+
// is a fix that holds until whichever path the agent happens to take.
|
|
4313
|
+
...brokerMode ? { AGT_REMOTE_MCP_TOKEN_VAR: "XERO_ACCESS_TOKEN" } : {},
|
|
4288
4314
|
XERO_TENANT_ID: "${XERO_TENANT_ID}",
|
|
4289
4315
|
// ENG-4922: writes go through xero-broker → read-only vendor server.
|
|
4290
4316
|
...hasXeroBroker ? { XERO_WRITES_VIA_BROKER: "true" } : {},
|
|
@@ -4938,7 +4964,7 @@ function exchangeFailureKind(err) {
|
|
|
4938
4964
|
}
|
|
4939
4965
|
|
|
4940
4966
|
// src/lib/api-client.ts
|
|
4941
|
-
var agtCliVersion = true ? "0.28.
|
|
4967
|
+
var agtCliVersion = true ? "0.28.489" : "dev";
|
|
4942
4968
|
var lastConfigHash = null;
|
|
4943
4969
|
function setConfigHash(hash) {
|
|
4944
4970
|
lastConfigHash = hash && hash.length > 0 ? hash : null;
|
|
@@ -7583,6 +7609,12 @@ async function executeConnectivityProbe(target, deps = {}) {
|
|
|
7583
7609
|
message: `${target.definitionId}: built-in module \u2014 no live check available, not verified`,
|
|
7584
7610
|
evidence: "none"
|
|
7585
7611
|
};
|
|
7612
|
+
case "host_unprobeable":
|
|
7613
|
+
return {
|
|
7614
|
+
status: "unverified",
|
|
7615
|
+
message: descriptor.label,
|
|
7616
|
+
evidence: "none"
|
|
7617
|
+
};
|
|
7586
7618
|
case "unsupported":
|
|
7587
7619
|
default:
|
|
7588
7620
|
return null;
|
|
@@ -7667,4 +7699,4 @@ export {
|
|
|
7667
7699
|
managerInstallSystemUnitCommand,
|
|
7668
7700
|
managerUninstallSystemUnitCommand
|
|
7669
7701
|
};
|
|
7670
|
-
//# sourceMappingURL=chunk-
|
|
7702
|
+
//# sourceMappingURL=chunk-46GY6S7I.js.map
|