@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/cli/index.js
CHANGED
|
@@ -777,7 +777,7 @@ The handler file contains all necessary processing logic for the detected intent
|
|
|
777
777
|
],
|
|
778
778
|
requiredSubagents: ["team-communicator"],
|
|
779
779
|
optionalSubagents: [],
|
|
780
|
-
dependentTasks: []
|
|
780
|
+
dependentTasks: ["verify-changes"]
|
|
781
781
|
};
|
|
782
782
|
}
|
|
783
783
|
});
|
|
@@ -7988,14 +7988,19 @@ var MCP_SERVERS = {
|
|
|
7988
7988
|
teams: {
|
|
7989
7989
|
provider: "teams",
|
|
7990
7990
|
name: "Microsoft Teams",
|
|
7991
|
-
description: "Microsoft Teams MCP server for messaging
|
|
7991
|
+
description: "Microsoft Teams MCP server for messaging via Bot Connector API",
|
|
7992
7992
|
requiresCredentials: true,
|
|
7993
7993
|
npmPackages: ["@bugzy-ai/teams-mcp-server"],
|
|
7994
7994
|
config: {
|
|
7995
7995
|
command: "teams-mcp-server",
|
|
7996
7996
|
args: [],
|
|
7997
7997
|
env: {
|
|
7998
|
-
|
|
7998
|
+
// Bot credentials (platform-level, from Bugzy's Azure Bot registration)
|
|
7999
|
+
TEAMS_BOT_APP_ID: "${TEAMS_BOT_APP_ID}",
|
|
8000
|
+
TEAMS_BOT_APP_PASSWORD: "${TEAMS_BOT_APP_PASSWORD}",
|
|
8001
|
+
// Conversation context (per-project, from stored conversation reference)
|
|
8002
|
+
TEAMS_SERVICE_URL: "${TEAMS_SERVICE_URL}",
|
|
8003
|
+
TEAMS_CONVERSATION_ID: "${TEAMS_CONVERSATION_ID}"
|
|
7999
8004
|
}
|
|
8000
8005
|
}
|
|
8001
8006
|
},
|