@integrity-labs/agt-cli 0.28.38 → 0.28.39

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 CHANGED
@@ -33,7 +33,7 @@ import {
33
33
  success,
34
34
  table,
35
35
  warn
36
- } from "../chunk-IJT4B5PH.js";
36
+ } from "../chunk-AL7UJNNI.js";
37
37
  import {
38
38
  CHANNEL_REGISTRY,
39
39
  DEPLOYMENT_TEMPLATES,
@@ -60,7 +60,7 @@ import {
60
60
  renderTemplate,
61
61
  resolveChannels,
62
62
  serializeManifestForSlackCli
63
- } from "../chunk-RYB5QSVS.js";
63
+ } from "../chunk-X5E2Q3W2.js";
64
64
 
65
65
  // src/bin/agt.ts
66
66
  import { join as join21 } from "path";
@@ -4773,7 +4773,7 @@ import { execFileSync, execSync } from "child_process";
4773
4773
  import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
4774
4774
  import chalk18 from "chalk";
4775
4775
  import ora16 from "ora";
4776
- var cliVersion = true ? "0.28.38" : "dev";
4776
+ var cliVersion = true ? "0.28.39" : "dev";
4777
4777
  async function fetchLatestVersion() {
4778
4778
  const host2 = getHost();
4779
4779
  if (!host2) return null;
@@ -5696,7 +5696,7 @@ function handleError(err) {
5696
5696
  }
5697
5697
 
5698
5698
  // src/bin/agt.ts
5699
- var cliVersion2 = true ? "0.28.38" : "dev";
5699
+ var cliVersion2 = true ? "0.28.39" : "dev";
5700
5700
  var program = new Command();
5701
5701
  program.name("agt").description("Augmented CLI \u2014 agent provisioning and management").version(cliVersion2).option("--json", "Emit machine-readable JSON output (suppress spinners and colors)").option("--skip-update-check", "Skip the automatic update check on startup");
5702
5702
  program.hook("preAction", async (thisCommand, actionCommand) => {
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  claudeModelAlias,
3
3
  isClaudeFastMode
4
- } from "./chunk-RYB5QSVS.js";
4
+ } from "./chunk-X5E2Q3W2.js";
5
5
  import {
6
6
  reapOrphanChannelMcps
7
7
  } from "./chunk-XWVM4KPK.js";
@@ -1487,4 +1487,4 @@ export {
1487
1487
  stopAllSessionsAndWait,
1488
1488
  getProjectDir
1489
1489
  };
1490
- //# sourceMappingURL=chunk-2V5QUET6.js.map
1490
+ //# sourceMappingURL=chunk-57MHPANB.js.map
@@ -14,7 +14,7 @@ import {
14
14
  registerFramework,
15
15
  resolveAvatarEnvUrl,
16
16
  wrapScheduledTaskPrompt
17
- } from "./chunk-RYB5QSVS.js";
17
+ } from "./chunk-X5E2Q3W2.js";
18
18
 
19
19
  // ../../packages/core/dist/integrations/registry.js
20
20
  var INTEGRATION_REGISTRY = [
@@ -7266,7 +7266,7 @@ function requireHost() {
7266
7266
  }
7267
7267
 
7268
7268
  // src/lib/api-client.ts
7269
- var agtCliVersion = true ? "0.28.38" : "dev";
7269
+ var agtCliVersion = true ? "0.28.39" : "dev";
7270
7270
  var lastConfigHash = null;
7271
7271
  function setConfigHash(hash) {
7272
7272
  lastConfigHash = hash && hash.length > 0 ? hash : null;
@@ -8326,4 +8326,4 @@ export {
8326
8326
  managerInstallSystemUnitCommand,
8327
8327
  managerUninstallSystemUnitCommand
8328
8328
  };
8329
- //# sourceMappingURL=chunk-IJT4B5PH.js.map
8329
+ //# sourceMappingURL=chunk-AL7UJNNI.js.map
@@ -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