@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.
- package/dist/bin/agt.js +4 -4
- package/dist/{chunk-2V5QUET6.js → chunk-57MHPANB.js} +2 -2
- package/dist/{chunk-IJT4B5PH.js → chunk-DA776TZO.js} +60 -60
- package/dist/chunk-DA776TZO.js.map +1 -0
- package/dist/{chunk-RYB5QSVS.js → chunk-X5E2Q3W2.js} +18 -1
- package/dist/chunk-X5E2Q3W2.js.map +1 -0
- package/dist/{claude-pair-runtime-64KMVLCZ.js → claude-pair-runtime-LOL5YGXP.js} +2 -2
- package/dist/lib/manager-worker.js +43 -17
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/{persistent-session-27Q5QJF6.js → persistent-session-CFELQZI7.js} +3 -3
- package/dist/{responsiveness-probe-G6LP7KSH.js → responsiveness-probe-YOT3EKKN.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-IJT4B5PH.js.map +0 -1
- package/dist/chunk-RYB5QSVS.js.map +0 -1
- /package/dist/{chunk-2V5QUET6.js.map → chunk-57MHPANB.js.map} +0 -0
- /package/dist/{claude-pair-runtime-64KMVLCZ.js.map → claude-pair-runtime-LOL5YGXP.js.map} +0 -0
- /package/dist/{persistent-session-27Q5QJF6.js.map → persistent-session-CFELQZI7.js.map} +0 -0
- /package/dist/{responsiveness-probe-G6LP7KSH.js.map → responsiveness-probe-YOT3EKKN.js.map} +0 -0
|
@@ -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-
|
|
5348
|
+
//# sourceMappingURL=chunk-X5E2Q3W2.js.map
|