@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.
@@ -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 = 10 * MB2;
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-AN7V4OG6.js.map
15766
+ //# sourceMappingURL=chunk-PQEAUMMZ.js.map