@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.
- package/dist/bin/agt.js +4 -4
- package/dist/{chunk-4OLSHG7F.js → chunk-4D4VKZPK.js} +11 -3
- package/dist/chunk-4D4VKZPK.js.map +1 -0
- package/dist/{chunk-IE7ZJKF3.js → chunk-LLIMZG67.js} +31 -16
- package/dist/chunk-LLIMZG67.js.map +1 -0
- package/dist/{claude-pair-runtime-CYJFIF2Z.js → claude-pair-runtime-EDHQS7BP.js} +2 -2
- package/dist/lib/manager-worker.js +10 -10
- package/dist/mcp/direct-chat-channel.js +21 -13
- package/dist/mcp/origami.js +21 -13
- package/dist/mcp/slack-channel.js +21 -13
- package/dist/mcp/telegram-channel.js +21 -13
- package/dist/mcp/xero.js +1251 -1096
- package/dist/{persistent-session-B7E5ZX2C.js → persistent-session-YNQQHPFS.js} +2 -2
- package/dist/{responsiveness-probe-NQIEWYTJ.js → responsiveness-probe-KVEPIRMG.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-4OLSHG7F.js.map +0 -1
- package/dist/chunk-IE7ZJKF3.js.map +0 -1
- /package/dist/{claude-pair-runtime-CYJFIF2Z.js.map → claude-pair-runtime-EDHQS7BP.js.map} +0 -0
- /package/dist/{persistent-session-B7E5ZX2C.js.map → persistent-session-YNQQHPFS.js.map} +0 -0
- /package/dist/{responsiveness-probe-NQIEWYTJ.js.map → responsiveness-probe-KVEPIRMG.js.map} +0 -0
|
@@ -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 —
|
|
2972
|
-
//
|
|
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
|
-
//
|
|
2975
|
-
"t3.small":
|
|
2976
|
-
//
|
|
2977
|
-
"t3.medium":
|
|
2978
|
-
//
|
|
2979
|
-
"t3.large":
|
|
2980
|
-
//
|
|
2981
|
-
"t3.xlarge":
|
|
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":
|
|
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 (
|
|
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).
|
|
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:
|
|
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-
|
|
12709
|
+
//# sourceMappingURL=chunk-LLIMZG67.js.map
|