@integrity-labs/agt-cli 0.28.396 → 0.28.397
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.
|
@@ -28,6 +28,7 @@ import {
|
|
|
28
28
|
getHostId,
|
|
29
29
|
givenUpMcpServerKeys,
|
|
30
30
|
liveProxyExtraHeaderVars,
|
|
31
|
+
liveProxyTokenVars,
|
|
31
32
|
pinAllowsUrgent,
|
|
32
33
|
provision,
|
|
33
34
|
provisionAutoKanbanProgressHook,
|
|
@@ -43,7 +44,7 @@ import {
|
|
|
43
44
|
resolveEffectivePinRaw,
|
|
44
45
|
safeWriteJsonAtomic,
|
|
45
46
|
setConfigHash
|
|
46
|
-
} from "../chunk-
|
|
47
|
+
} from "../chunk-33ZECLH7.js";
|
|
47
48
|
import {
|
|
48
49
|
getProjectDir as getProjectDir2,
|
|
49
50
|
getReadyTasks,
|
|
@@ -9248,7 +9249,7 @@ var agentRestartTimezoneInputs = /* @__PURE__ */ new Map();
|
|
|
9248
9249
|
var lastVersionCheckAt = 0;
|
|
9249
9250
|
var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
|
|
9250
9251
|
var lastResponsivenessProbeAt = 0;
|
|
9251
|
-
var agtCliVersion = true ? "0.28.
|
|
9252
|
+
var agtCliVersion = true ? "0.28.397" : "dev";
|
|
9252
9253
|
function resolveBrewPath(execFileSync2) {
|
|
9253
9254
|
try {
|
|
9254
9255
|
const out = execFileSync2("which", ["brew"], { timeout: 5e3 }).toString().trim();
|
|
@@ -12370,7 +12371,10 @@ async function processAgent(agent, agentStates) {
|
|
|
12370
12371
|
isolated: isolationMode(agent.code_name) === "docker"
|
|
12371
12372
|
});
|
|
12372
12373
|
}
|
|
12373
|
-
const liveProxyVars =
|
|
12374
|
+
const liveProxyVars = /* @__PURE__ */ new Set([
|
|
12375
|
+
...liveProxyExtraHeaderVars(mcpJsonForReap),
|
|
12376
|
+
...liveProxyTokenVars(mcpJsonForReap)
|
|
12377
|
+
]);
|
|
12374
12378
|
const respawnVars = envOnlyRespawnVars(changedVars, mcpJsonForReap, CHANNEL_SECRET_ENV_KEYS).filter((v) => !liveProxyVars.has(v));
|
|
12375
12379
|
const envDiff = classifyEnvIntegrationsDiff(preWriteEnv, postWriteEnv);
|
|
12376
12380
|
const rotatedOnlyVars = new Set(envDiff.rotated);
|