@bugzy-ai/bugzy 1.9.1 → 1.9.3
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/cli/index.cjs +8 -3
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.js +8 -3
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +8 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +8 -3
- package/dist/index.js.map +1 -1
- package/dist/tasks/index.cjs +1 -1
- package/dist/tasks/index.cjs.map +1 -1
- package/dist/tasks/index.js +1 -1
- package/dist/tasks/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -17,14 +17,19 @@ var MCP_SERVERS = {
|
|
|
17
17
|
teams: {
|
|
18
18
|
provider: "teams",
|
|
19
19
|
name: "Microsoft Teams",
|
|
20
|
-
description: "Microsoft Teams MCP server for messaging
|
|
20
|
+
description: "Microsoft Teams MCP server for messaging via Bot Connector API",
|
|
21
21
|
requiresCredentials: true,
|
|
22
22
|
npmPackages: ["@bugzy-ai/teams-mcp-server"],
|
|
23
23
|
config: {
|
|
24
24
|
command: "teams-mcp-server",
|
|
25
25
|
args: [],
|
|
26
26
|
env: {
|
|
27
|
-
|
|
27
|
+
// Bot credentials (platform-level, from Bugzy's Azure Bot registration)
|
|
28
|
+
TEAMS_BOT_APP_ID: "${TEAMS_BOT_APP_ID}",
|
|
29
|
+
TEAMS_BOT_APP_PASSWORD: "${TEAMS_BOT_APP_PASSWORD}",
|
|
30
|
+
// Conversation context (per-project, from stored conversation reference)
|
|
31
|
+
TEAMS_SERVICE_URL: "${TEAMS_SERVICE_URL}",
|
|
32
|
+
TEAMS_CONVERSATION_ID: "${TEAMS_CONVERSATION_ID}"
|
|
28
33
|
}
|
|
29
34
|
}
|
|
30
35
|
},
|
|
@@ -912,7 +917,7 @@ The handler file contains all necessary processing logic for the detected intent
|
|
|
912
917
|
],
|
|
913
918
|
requiredSubagents: ["team-communicator"],
|
|
914
919
|
optionalSubagents: [],
|
|
915
|
-
dependentTasks: []
|
|
920
|
+
dependentTasks: ["verify-changes"]
|
|
916
921
|
};
|
|
917
922
|
|
|
918
923
|
// src/tasks/library/process-event.ts
|