@integrity-labs/agt-cli 0.28.635 → 0.28.636

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.
@@ -10105,6 +10105,24 @@ function isSlackInboundTransportDown(state, downForAtLeastMs) {
10105
10105
  return state.down_for_ms >= downForAtLeastMs;
10106
10106
  }
10107
10107
 
10108
+ // ../../packages/core/dist/integrations/bind-applicability.js
10109
+ function classifyBindDelivery(input) {
10110
+ if (input.provider)
10111
+ return "mcp";
10112
+ if (input.mcpUrl || input.mcpCommand)
10113
+ return "mcp";
10114
+ if (input.sourceType === "mcp_server")
10115
+ return "mcp";
10116
+ if (input.sourceType === "managed")
10117
+ return "mcp";
10118
+ if (input.cliPackage || input.cliBinary || input.sourceType === "cli_tool")
10119
+ return "cli";
10120
+ return "builtin";
10121
+ }
10122
+ function isSessionToolBindCandidate(input) {
10123
+ return classifyBindDelivery(input) === "mcp";
10124
+ }
10125
+
10108
10126
  // ../../packages/core/dist/anchor/types.js
10109
10127
  var ANCHOR_API_BASE_URL = "https://api.anchorbrowser.io/v1";
10110
10128
  var ANCHOR_API_KEY_HEADER = "anchor-api-key";
@@ -12023,6 +12041,7 @@ export {
12023
12041
  SLACK_SOCKET_STATE_FILENAME,
12024
12042
  parseSlackSocketState,
12025
12043
  isSlackInboundTransportDown,
12044
+ isSessionToolBindCandidate,
12026
12045
  classifyCursorAdvance,
12027
12046
  cursorAdvanceCounterKey,
12028
12047
  formatCursorAdvanceShortfall,
@@ -12095,4 +12114,4 @@ export {
12095
12114
  minutesSinceLocalMidnight,
12096
12115
  peekCurrentSession
12097
12116
  };
12098
- //# sourceMappingURL=chunk-FKG7DIE2.js.map
12117
+ //# sourceMappingURL=chunk-O4ADFO57.js.map