@integrity-labs/agt-cli 0.28.418 → 0.28.420

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.
@@ -2968,19 +2968,27 @@ function resolveAvatarEnvUrl(raw) {
2968
2968
 
2969
2969
  // ../../packages/core/dist/provisioning/ec2-capacity.js
2970
2970
  var CAPACITY_TABLE = {
2971
- // t3 family — burst-credit instances. Lookup is per-vCPU plus
2972
- // headroom for the manager process itself.
2971
+ // t3 family — burstable (CPU credits). Fine for these mostly-I/O-bound
2972
+ // agents; the monitor + resize path cover the rare sustained-load case.
2973
2973
  "t3.micro": 1,
2974
- // 1 vCPU / 1 GB — barely fits one agent
2975
- "t3.small": 1,
2976
- // 2 vCPU / 2 GB — still tight
2977
- "t3.medium": 2,
2978
- // 2 vCPU / 4 GB — the sweet spot for a 2-agent host
2979
- "t3.large": 4,
2980
- // 2 vCPU / 8 GB — bursts cover the headroom
2981
- "t3.xlarge": 8,
2974
+ // 2 vCPU / 1 GB — floor
2975
+ "t3.small": 2,
2976
+ // 2 vCPU / 2 GB
2977
+ "t3.medium": 4,
2978
+ // 2 vCPU / 4 GB
2979
+ "t3.large": 8,
2980
+ // 2 vCPU / 8 GB
2981
+ "t3.xlarge": 16,
2982
2982
  // 4 vCPU / 16 GB
2983
- "t3.2xlarge": 16
2983
+ "t3.2xlarge": 32,
2984
+ // 8 vCPU / 32 GB
2985
+ // m6i family — fixed performance (no burst-credit cliff), the preferred
2986
+ // family for dense / sustained multi-agent hosts (e.g. Enterprise default).
2987
+ "m6i.large": 8,
2988
+ // 2 vCPU / 8 GB
2989
+ "m6i.xlarge": 16,
2990
+ // 4 vCPU / 16 GB
2991
+ "m6i.2xlarge": 32
2984
2992
  // 8 vCPU / 32 GB
2985
2993
  };
2986
2994
  var KNOWN_INSTANCE_TYPES = Object.keys(CAPACITY_TABLE);
@@ -4126,6 +4134,13 @@ var BROKER_TOOLKIT_PROVIDERS = {
4126
4134
  function isBrokerToolkit(definitionId) {
4127
4135
  return definitionId in BROKER_TOOLKIT_PROVIDERS;
4128
4136
  }
4137
+ var APPROVAL_BROKER_TOOLKITS = /* @__PURE__ */ new Set(["xero-broker"]);
4138
+ function isApprovalBrokerToolkit(definitionId) {
4139
+ return APPROVAL_BROKER_TOOLKITS.has(definitionId);
4140
+ }
4141
+ function isHostUnprobeableBroker(definitionId) {
4142
+ return isBrokerToolkit(definitionId) || isApprovalBrokerToolkit(definitionId);
4143
+ }
4129
4144
  var HTTP_PROBE_PROVIDERS = /* @__PURE__ */ new Set([
4130
4145
  "linear",
4131
4146
  "google-workspace",
@@ -4176,12 +4191,12 @@ function mcpOverrideFrom(ct) {
4176
4191
  }
4177
4192
  function resolveConnectivityProbe(input) {
4178
4193
  const { definitionId, sourceType, authType } = input;
4179
- if (isBrokerToolkit(definitionId) && (authType === "managed" || sourceType === "managed")) {
4194
+ if (isHostUnprobeableBroker(definitionId) && (authType === "managed" || sourceType === "managed")) {
4180
4195
  return {
4181
4196
  kind: "unsupported",
4182
4197
  sourceType: "managed",
4183
4198
  readOnly: true,
4184
- label: `${definitionId}: broker-managed \u2014 credentials minted per task; no host probe (central enrolment check only)`,
4199
+ label: isApprovalBrokerToolkit(definitionId) ? `${definitionId}: approval broker \u2014 no stored credential; writes authenticate server-side (no host probe)` : `${definitionId}: broker-managed \u2014 credentials minted per task; no host probe (central enrolment check only)`,
4185
4200
  centralReachable: false
4186
4201
  };
4187
4202
  }
@@ -7838,9 +7853,9 @@ var FLAG_REGISTRY = [
7838
7853
  // migration 20260714000005. flag-archive-allow: team-scoped-visibility superseded by unconditional default (ENG-7754)
7839
7854
  {
7840
7855
  key: "channel-busy-ack",
7841
- description: "Busy-but-alive ack notices when an agent is mid-task (ENG-6180). Boolean gate; ships dark.",
7856
+ description: "Busy-but-alive ack notices when an agent is mid-task (ENG-6180). Default ON (ENG-8039: the feature was introduced dark on 2026-07-16 and never fired in prod). Set AGT_CHANNEL_BUSY_ACK_ENABLED=false or override via the Feature Flags admin page to disable per-host.",
7842
7857
  flagType: "boolean",
7843
- defaultValue: false,
7858
+ defaultValue: true,
7844
7859
  envVar: "AGT_CHANNEL_BUSY_ACK_ENABLED"
7845
7860
  },
7846
7861
  {
@@ -12691,4 +12706,4 @@ export {
12691
12706
  stopAllSessionsAndWait,
12692
12707
  getProjectDir
12693
12708
  };
12694
- //# sourceMappingURL=chunk-IE7ZJKF3.js.map
12709
+ //# sourceMappingURL=chunk-LLIMZG67.js.map