@bugzy-ai/bugzy 1.9.4 → 1.10.0
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/LICENSE +21 -21
- package/README.md +273 -273
- package/dist/cli/index.cjs +28 -22
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.js +27 -21
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +25 -19
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +25 -19
- package/dist/index.js.map +1 -1
- package/dist/subagents/index.cjs +1 -1
- package/dist/subagents/index.cjs.map +1 -1
- package/dist/subagents/index.js +1 -1
- package/dist/subagents/index.js.map +1 -1
- package/dist/subagents/metadata.cjs +1 -1
- package/dist/subagents/metadata.cjs.map +1 -1
- package/dist/subagents/metadata.js +1 -1
- package/dist/subagents/metadata.js.map +1 -1
- package/dist/tasks/index.cjs.map +1 -1
- package/dist/tasks/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/init/.bugzy/runtime/knowledge-base.md +61 -61
- package/templates/init/.bugzy/runtime/knowledge-maintenance-guide.md +97 -97
- package/templates/init/.bugzy/runtime/project-context.md +35 -35
- package/templates/init/.bugzy/runtime/subagent-memory-guide.md +87 -87
- package/templates/init/.bugzy/runtime/templates/test-plan-template.md +50 -50
- package/templates/init/.bugzy/runtime/templates/test-result-schema.md +498 -498
- package/templates/init/.bugzy/runtime/test-execution-strategy.md +535 -535
- package/templates/init/.bugzy/runtime/testing-best-practices.md +724 -724
- package/templates/init/.env.testdata +18 -18
- package/templates/init/.gitignore-template +24 -24
- package/templates/init/AGENTS.md +155 -155
- package/templates/init/CLAUDE.md +157 -157
- package/templates/init/test-runs/README.md +45 -45
- package/templates/playwright/BasePage.template.ts +190 -190
- package/templates/playwright/auth.setup.template.ts +89 -89
- package/templates/playwright/dataGenerators.helper.template.ts +148 -148
- package/templates/playwright/dateUtils.helper.template.ts +96 -96
- package/templates/playwright/pages.fixture.template.ts +50 -50
- package/templates/playwright/playwright.config.template.ts +97 -97
- package/templates/playwright/reporters/bugzy-reporter.ts +454 -454
- package/dist/templates/init/.bugzy/runtime/knowledge-base.md +0 -61
- package/dist/templates/init/.bugzy/runtime/knowledge-maintenance-guide.md +0 -97
- package/dist/templates/init/.bugzy/runtime/project-context.md +0 -35
- package/dist/templates/init/.bugzy/runtime/subagent-memory-guide.md +0 -87
- package/dist/templates/init/.bugzy/runtime/templates/test-plan-template.md +0 -50
- package/dist/templates/init/.bugzy/runtime/templates/test-result-schema.md +0 -498
- package/dist/templates/init/.bugzy/runtime/test-execution-strategy.md +0 -535
- package/dist/templates/init/.bugzy/runtime/testing-best-practices.md +0 -632
- package/dist/templates/init/.gitignore-template +0 -25
package/dist/index.js
CHANGED
|
@@ -17,14 +17,20 @@ 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
|
+
TEAMS_BOT_TENANT_ID: "${TEAMS_BOT_TENANT_ID}",
|
|
31
|
+
// Conversation context (per-project, from stored conversation reference)
|
|
32
|
+
TEAMS_SERVICE_URL: "${TEAMS_SERVICE_URL}",
|
|
33
|
+
TEAMS_CONVERSATION_ID: "${TEAMS_CONVERSATION_ID}"
|
|
28
34
|
}
|
|
29
35
|
}
|
|
30
36
|
},
|
|
@@ -130,7 +136,7 @@ var MCP_SERVERS = {
|
|
|
130
136
|
AZURE_DEVOPS_PAT: "${AZURE_DEVOPS_PAT}"
|
|
131
137
|
}
|
|
132
138
|
}
|
|
133
|
-
}
|
|
139
|
+
},
|
|
134
140
|
// github-modelcontextprotocol: {
|
|
135
141
|
// provider: 'github',
|
|
136
142
|
// name: 'GitHub',
|
|
@@ -157,21 +163,21 @@ var MCP_SERVERS = {
|
|
|
157
163
|
// },
|
|
158
164
|
// },
|
|
159
165
|
// },
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
166
|
+
jira: {
|
|
167
|
+
provider: "jira",
|
|
168
|
+
name: "Jira Cloud",
|
|
169
|
+
description: "Jira Cloud MCP server for issue tracking (REST API v3)",
|
|
170
|
+
requiresCredentials: true,
|
|
171
|
+
npmPackages: ["@bugzy-ai/jira-cloud-mcp-server"],
|
|
172
|
+
config: {
|
|
173
|
+
command: "jira-cloud-mcp-server",
|
|
174
|
+
args: [],
|
|
175
|
+
env: {
|
|
176
|
+
JIRA_CLOUD_TOKEN: "${JIRA_CLOUD_TOKEN}",
|
|
177
|
+
JIRA_CLOUD_ID: "${JIRA_CLOUD_ID}"
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
}
|
|
175
181
|
// confluence: {
|
|
176
182
|
// provider: 'confluence',
|
|
177
183
|
// name: 'Confluence',
|
|
@@ -5664,7 +5670,7 @@ var SUBAGENTS = {
|
|
|
5664
5670
|
icon: "bot",
|
|
5665
5671
|
integrations: [
|
|
5666
5672
|
// INTEGRATIONS.linear,
|
|
5667
|
-
|
|
5673
|
+
INTEGRATIONS.jira,
|
|
5668
5674
|
INTEGRATIONS["jira-server"],
|
|
5669
5675
|
INTEGRATIONS["azure-devops"],
|
|
5670
5676
|
INTEGRATIONS.notion,
|