@integrity-labs/agt-cli 0.26.1 → 0.26.2-eng5706.1

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.
@@ -930,6 +930,157 @@ async function createSlackApp(configToken, manifest) {
930
930
  };
931
931
  }
932
932
 
933
+ // ../../packages/core/dist/channels/msteams-scopes.js
934
+ var MSTEAMS_SCOPE_REGISTRY = [
935
+ // ── Messaging ────────────────────────────────────────────────────────────
936
+ {
937
+ scope: "ChannelMessage.Read.Group",
938
+ name: "Read Channel Messages",
939
+ description: "Read messages in Teams channels the bot has been added to (RSC, per-team).",
940
+ category: "messaging",
941
+ risk: "medium",
942
+ grant_type: "rsc"
943
+ },
944
+ {
945
+ scope: "ChannelMessage.Send.Group",
946
+ name: "Send Channel Messages",
947
+ description: "Post messages to Teams channels the bot has been added to.",
948
+ category: "messaging",
949
+ risk: "low",
950
+ grant_type: "rsc"
951
+ },
952
+ {
953
+ scope: "ChatMessage.Read.Chat",
954
+ name: "Read Chat Messages",
955
+ description: "Read messages in 1:1 and group chats the bot is part of.",
956
+ category: "messaging",
957
+ risk: "high",
958
+ grant_type: "rsc"
959
+ },
960
+ {
961
+ scope: "Chat.ReadWrite",
962
+ name: "Read and Write Chats",
963
+ description: "Create, read, and update 1:1 and group chats the bot is part of.",
964
+ category: "messaging",
965
+ risk: "high",
966
+ grant_type: "application"
967
+ },
968
+ {
969
+ scope: "TeamsActivity.Send",
970
+ name: "Send Activity Notifications",
971
+ description: "Send proactive activity feed notifications (toasts) to users in the tenant.",
972
+ category: "messaging",
973
+ risk: "medium",
974
+ grant_type: "application"
975
+ },
976
+ // ── Files ────────────────────────────────────────────────────────────────
977
+ {
978
+ scope: "Files.Read.All",
979
+ name: "Read All Files",
980
+ description: "Read files the user can access in OneDrive and SharePoint (no write).",
981
+ category: "files",
982
+ risk: "medium",
983
+ grant_type: "application"
984
+ },
985
+ {
986
+ scope: "Files.ReadWrite.All",
987
+ name: "Read and Write All Files",
988
+ description: "Read, create, update, and delete files in OneDrive and SharePoint. Required for `uploadTeamsFile`.",
989
+ category: "files",
990
+ risk: "high",
991
+ grant_type: "application"
992
+ },
993
+ // ── Meetings ─────────────────────────────────────────────────────────────
994
+ {
995
+ scope: "ChannelMeeting.ReadBasic.Group",
996
+ name: "Read Channel Meeting Info",
997
+ description: "Read basic info (title, time, organiser) of channel meetings in teams the bot has been added to.",
998
+ category: "meetings",
999
+ risk: "low",
1000
+ grant_type: "rsc"
1001
+ },
1002
+ {
1003
+ scope: "OnlineMeetings.ReadWrite.All",
1004
+ name: "Read and Write Online Meetings",
1005
+ description: "Create, read, update, and delete Teams online meetings for any user in the tenant.",
1006
+ category: "meetings",
1007
+ risk: "high",
1008
+ grant_type: "application"
1009
+ },
1010
+ // ── Team Management ──────────────────────────────────────────────────────
1011
+ {
1012
+ scope: "Team.ReadBasic.All",
1013
+ name: "Read Basic Team Info",
1014
+ description: "List the teams the bot has been added to and read their basic info.",
1015
+ category: "team-management",
1016
+ risk: "low",
1017
+ grant_type: "application"
1018
+ },
1019
+ {
1020
+ scope: "TeamMember.Read.Group",
1021
+ name: "Read Team Members",
1022
+ description: "Read the membership list of teams the bot has been added to (RSC, per-team).",
1023
+ category: "team-management",
1024
+ risk: "medium",
1025
+ grant_type: "rsc"
1026
+ },
1027
+ {
1028
+ scope: "ChannelSettings.Read.All",
1029
+ name: "Read Channel Settings",
1030
+ description: "Read settings of channels the bot has been added to.",
1031
+ category: "team-management",
1032
+ risk: "low",
1033
+ grant_type: "rsc"
1034
+ },
1035
+ {
1036
+ scope: "ChannelSettings.ReadWrite.All",
1037
+ name: "Manage Channel Settings",
1038
+ description: "Read and update settings of channels the bot has been added to (rename, description, moderation).",
1039
+ category: "team-management",
1040
+ risk: "high",
1041
+ grant_type: "rsc"
1042
+ },
1043
+ // ── User ─────────────────────────────────────────────────────────────────
1044
+ {
1045
+ scope: "User.Read.All",
1046
+ name: "Read All User Profiles",
1047
+ description: "Read full profile info (display name, email, job title) of users in the tenant.",
1048
+ category: "user",
1049
+ risk: "medium",
1050
+ grant_type: "application"
1051
+ },
1052
+ // ── App Lifecycle ────────────────────────────────────────────────────────
1053
+ {
1054
+ scope: "TeamsAppInstallation.ReadWriteForUser.All",
1055
+ name: "Install/Uninstall App for User",
1056
+ description: "Install, upgrade, and uninstall the Teams app for users in the tenant \u2014 required for proactive install before first DM.",
1057
+ category: "user",
1058
+ risk: "high",
1059
+ grant_type: "application"
1060
+ }
1061
+ ];
1062
+ var DEFAULT_PERMISSIONS = [
1063
+ "ChannelMessage.Read.Group",
1064
+ "ChannelMessage.Send.Group",
1065
+ "ChatMessage.Read.Chat",
1066
+ "Chat.ReadWrite",
1067
+ "Team.ReadBasic.All",
1068
+ "TeamMember.Read.Group",
1069
+ "ChannelSettings.Read.All",
1070
+ "Files.ReadWrite.All",
1071
+ "User.Read.All",
1072
+ "TeamsAppInstallation.ReadWriteForUser.All"
1073
+ ];
1074
+ var MSTEAMS_SCOPE_PRESETS = {
1075
+ minimal: [
1076
+ "ChannelMessage.Read.Group",
1077
+ "ChannelMessage.Send.Group",
1078
+ "Team.ReadBasic.All"
1079
+ ],
1080
+ standard: [...DEFAULT_PERMISSIONS],
1081
+ full: MSTEAMS_SCOPE_REGISTRY.map((s) => s.scope)
1082
+ };
1083
+
933
1084
  // ../../packages/core/dist/parser/frontmatter.js
934
1085
  import { parse as parseYaml } from "yaml";
935
1086
  function extractFrontmatter(content) {
@@ -3143,10 +3294,10 @@ function resolveConnectivityProbe(input) {
3143
3294
  switch (sourceType) {
3144
3295
  case "mcp_server":
3145
3296
  return {
3146
- kind: "mcp_tools_list",
3297
+ kind: "unsupported",
3147
3298
  sourceType: "mcp_server",
3148
3299
  readOnly: true,
3149
- label: `${definitionId}: MCP tools/list`,
3300
+ label: `${definitionId}: local-stdio MCP \u2014 no host probe available`,
3150
3301
  centralReachable: false
3151
3302
  };
3152
3303
  case "cli_tool":
@@ -3743,4 +3894,4 @@ export {
3743
3894
  attributeTranscriptUsageByRun,
3744
3895
  KANBAN_CHECK_COMMAND
3745
3896
  };
3746
- //# sourceMappingURL=chunk-7NDNTSHD.js.map
3897
+ //# sourceMappingURL=chunk-U3HCB23E.js.map