@integrity-labs/agt-cli 0.28.401 → 0.28.402

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.
@@ -44,7 +44,7 @@ import {
44
44
  resolveEffectivePinRaw,
45
45
  safeWriteJsonAtomic,
46
46
  setConfigHash
47
- } from "../chunk-24P2BKOV.js";
47
+ } from "../chunk-CVID4T6Q.js";
48
48
  import {
49
49
  getProjectDir as getProjectDir2,
50
50
  getReadyTasks,
@@ -1372,7 +1372,8 @@ async function runConnectivityProbes(integrations, options = {}) {
1372
1372
  credentials: integ.credentials ?? {},
1373
1373
  cliBinary: integ.cli_binary,
1374
1374
  mcpServerKey: integ.mcp_server_key,
1375
- connectivityTest: integ.connectivity_test ?? null
1375
+ connectivityTest: integ.connectivity_test ?? null,
1376
+ inlineServerEntry: integ.inline_server_entry
1376
1377
  };
1377
1378
  let outcome;
1378
1379
  try {
@@ -8968,7 +8969,11 @@ async function runAgentConnectivityProbes(agent, integrations, projectDir) {
8968
8969
  connectionKey: i.connection_key ?? null
8969
8970
  }),
8970
8971
  // ENG-6242: forward the prescribed connectivity-test tool to the executor.
8971
- connectivity_test: i.connectivity_test ?? null
8972
+ connectivity_test: i.connectivity_test ?? null,
8973
+ // ENG-8055: forward the reconstructed inline server entry (managed
8974
+ // quarantined rows) so the MCP probe legs hit the real server instead of
8975
+ // the missing `.mcp.json` key. Absent on normal (active) rows.
8976
+ inline_server_entry: i.inline_server_entry
8972
8977
  };
8973
8978
  }),
8974
8979
  { probeDeps, intervalMs: intervalSec * 1e3 }
@@ -9249,7 +9254,7 @@ var agentRestartTimezoneInputs = /* @__PURE__ */ new Map();
9249
9254
  var lastVersionCheckAt = 0;
9250
9255
  var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
9251
9256
  var lastResponsivenessProbeAt = 0;
9252
- var agtCliVersion = true ? "0.28.401" : "dev";
9257
+ var agtCliVersion = true ? "0.28.402" : "dev";
9253
9258
  function resolveBrewPath(execFileSync2) {
9254
9259
  try {
9255
9260
  const out = execFileSync2("which", ["brew"], { timeout: 5e3 }).toString().trim();