@integrity-labs/agt-cli 0.28.560 → 0.28.562
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-C2GQLZ4F.js → chunk-5LVSV3R5.js} +6 -3
- package/dist/chunk-5LVSV3R5.js.map +1 -0
- package/dist/{chunk-AN7V4OG6.js → chunk-PQEAUMMZ.js} +26 -2
- package/dist/chunk-PQEAUMMZ.js.map +1 -0
- package/dist/{claude-pair-runtime-D4BXRU2P.js → claude-pair-runtime-UHIPHP6G.js} +2 -2
- package/dist/lib/manager-worker.js +12 -11
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +1 -1
- package/dist/mcp/origami.js +1 -1
- package/dist/mcp/slack-channel.js +1 -1
- package/dist/mcp/telegram-channel.js +1 -1
- package/dist/{persistent-session-7P5B6Z4M.js → persistent-session-ROIN4XRH.js} +2 -2
- package/dist/{responsiveness-probe-AALUPZKZ.js → responsiveness-probe-YQCU2K6O.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-AN7V4OG6.js.map +0 -1
- package/dist/chunk-C2GQLZ4F.js.map +0 -1
- /package/dist/{claude-pair-runtime-D4BXRU2P.js.map → claude-pair-runtime-UHIPHP6G.js.map} +0 -0
- /package/dist/{persistent-session-7P5B6Z4M.js.map → persistent-session-ROIN4XRH.js.map} +0 -0
- /package/dist/{responsiveness-probe-AALUPZKZ.js.map → responsiveness-probe-YQCU2K6O.js.map} +0 -0
|
@@ -4092,6 +4092,28 @@ function requiredMcpWildcard(serverKey) {
|
|
|
4092
4092
|
return `mcp__${serverKey}__*`;
|
|
4093
4093
|
}
|
|
4094
4094
|
|
|
4095
|
+
// ../../packages/core/dist/provisioning/control-plane-config-keys.js
|
|
4096
|
+
var CONTROL_PLANE_ONLY_CONFIG_KEYS = /* @__PURE__ */ new Set([
|
|
4097
|
+
"managed_state_token",
|
|
4098
|
+
"managed_state_expires",
|
|
4099
|
+
"managed_state_tokens"
|
|
4100
|
+
]);
|
|
4101
|
+
var CONTROL_PLANE_CONFIG_KEY_SUFFIXES = ["_server_id"];
|
|
4102
|
+
function isControlPlaneOnlyConfigKey(key) {
|
|
4103
|
+
const normalized = key.toLowerCase();
|
|
4104
|
+
if (CONTROL_PLANE_ONLY_CONFIG_KEYS.has(normalized))
|
|
4105
|
+
return true;
|
|
4106
|
+
return CONTROL_PLANE_CONFIG_KEY_SUFFIXES.some((suffix) => normalized.endsWith(suffix));
|
|
4107
|
+
}
|
|
4108
|
+
function isControlPlaneOnlyEnvVar(name) {
|
|
4109
|
+
const normalized = name.toLowerCase();
|
|
4110
|
+
for (const key of CONTROL_PLANE_ONLY_CONFIG_KEYS) {
|
|
4111
|
+
if (normalized === key || normalized.endsWith(`_${key}`))
|
|
4112
|
+
return true;
|
|
4113
|
+
}
|
|
4114
|
+
return CONTROL_PLANE_CONFIG_KEY_SUFFIXES.some((suffix) => normalized.endsWith(suffix));
|
|
4115
|
+
}
|
|
4116
|
+
|
|
4095
4117
|
// ../../packages/core/dist/integrations/context-validator.js
|
|
4096
4118
|
import Ajv20202 from "ajv/dist/2020.js";
|
|
4097
4119
|
import addFormats2 from "ajv-formats";
|
|
@@ -7832,7 +7854,7 @@ var INSTALLABLE_NATIVE_INTEGRATION_IDS = INSTALLABLE_NATIVE_INTEGRATIONS.map((i)
|
|
|
7832
7854
|
|
|
7833
7855
|
// ../../packages/core/dist/direct-chat/upload.js
|
|
7834
7856
|
var MB2 = 1024 * 1024;
|
|
7835
|
-
var DIRECT_CHAT_UPLOAD_MAX_BYTES =
|
|
7857
|
+
var DIRECT_CHAT_UPLOAD_MAX_BYTES = 100 * MB2;
|
|
7836
7858
|
|
|
7837
7859
|
// ../../packages/core/dist/direct-chat/notice-display.js
|
|
7838
7860
|
var AGENT_DIRECTED_NOTICE_KINDS = [
|
|
@@ -15570,6 +15592,8 @@ export {
|
|
|
15570
15592
|
buildLiveHeaderRemoteMcpProxyEntry,
|
|
15571
15593
|
buildOAuthRemoteMcpProxyEntry,
|
|
15572
15594
|
buildNativeMcpEntry,
|
|
15595
|
+
isControlPlaneOnlyConfigKey,
|
|
15596
|
+
isControlPlaneOnlyEnvVar,
|
|
15573
15597
|
toOpencodeModel,
|
|
15574
15598
|
mergeOpencodeConfigArtifact,
|
|
15575
15599
|
readChannelServerEnv,
|
|
@@ -15739,4 +15763,4 @@ export {
|
|
|
15739
15763
|
stopAllSessionsAndWait,
|
|
15740
15764
|
getProjectDir
|
|
15741
15765
|
};
|
|
15742
|
-
//# sourceMappingURL=chunk-
|
|
15766
|
+
//# sourceMappingURL=chunk-PQEAUMMZ.js.map
|