@integrity-labs/agt-cli 0.28.38 → 0.28.40

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.
@@ -1101,6 +1101,14 @@ var CONNECTIVITY_SEVERITY = {
1101
1101
  function worseConnectivityOutcome(a, b) {
1102
1102
  return CONNECTIVITY_SEVERITY[b.status] > CONNECTIVITY_SEVERITY[a.status] ? b : a;
1103
1103
  }
1104
+ var BROKER_TOOLKIT_PROVIDERS = {
1105
+ "aws-cli": "aws",
1106
+ gcloud: "gcp",
1107
+ "cloud-broker": null
1108
+ };
1109
+ function isBrokerToolkit(definitionId) {
1110
+ return definitionId in BROKER_TOOLKIT_PROVIDERS;
1111
+ }
1104
1112
  var HTTP_PROBE_PROVIDERS = /* @__PURE__ */ new Set([
1105
1113
  "linear",
1106
1114
  "google-workspace",
@@ -1140,6 +1148,15 @@ function mcpOverrideFrom(ct) {
1140
1148
  }
1141
1149
  function resolveConnectivityProbe(input) {
1142
1150
  const { definitionId, sourceType, authType } = input;
1151
+ if (isBrokerToolkit(definitionId) && (authType === "managed" || sourceType === "managed")) {
1152
+ return {
1153
+ kind: "unsupported",
1154
+ sourceType: "managed",
1155
+ readOnly: true,
1156
+ label: `${definitionId}: broker-managed \u2014 credentials minted per task; no host probe (central enrolment check only)`,
1157
+ centralReachable: false
1158
+ };
1159
+ }
1143
1160
  if (authType === "managed" || sourceType === "managed") {
1144
1161
  return {
1145
1162
  kind: "managed_composite",
@@ -5328,4 +5345,4 @@ export {
5328
5345
  coerceEnvValue,
5329
5346
  FLAGS_SCHEMA_VERSION
5330
5347
  };
5331
- //# sourceMappingURL=chunk-RYB5QSVS.js.map
5348
+ //# sourceMappingURL=chunk-X5E2Q3W2.js.map