@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.
Files changed (50) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +273 -273
  3. package/dist/cli/index.cjs +28 -22
  4. package/dist/cli/index.cjs.map +1 -1
  5. package/dist/cli/index.js +27 -21
  6. package/dist/cli/index.js.map +1 -1
  7. package/dist/index.cjs +25 -19
  8. package/dist/index.cjs.map +1 -1
  9. package/dist/index.js +25 -19
  10. package/dist/index.js.map +1 -1
  11. package/dist/subagents/index.cjs +1 -1
  12. package/dist/subagents/index.cjs.map +1 -1
  13. package/dist/subagents/index.js +1 -1
  14. package/dist/subagents/index.js.map +1 -1
  15. package/dist/subagents/metadata.cjs +1 -1
  16. package/dist/subagents/metadata.cjs.map +1 -1
  17. package/dist/subagents/metadata.js +1 -1
  18. package/dist/subagents/metadata.js.map +1 -1
  19. package/dist/tasks/index.cjs.map +1 -1
  20. package/dist/tasks/index.js.map +1 -1
  21. package/package.json +1 -1
  22. package/templates/init/.bugzy/runtime/knowledge-base.md +61 -61
  23. package/templates/init/.bugzy/runtime/knowledge-maintenance-guide.md +97 -97
  24. package/templates/init/.bugzy/runtime/project-context.md +35 -35
  25. package/templates/init/.bugzy/runtime/subagent-memory-guide.md +87 -87
  26. package/templates/init/.bugzy/runtime/templates/test-plan-template.md +50 -50
  27. package/templates/init/.bugzy/runtime/templates/test-result-schema.md +498 -498
  28. package/templates/init/.bugzy/runtime/test-execution-strategy.md +535 -535
  29. package/templates/init/.bugzy/runtime/testing-best-practices.md +724 -724
  30. package/templates/init/.env.testdata +18 -18
  31. package/templates/init/.gitignore-template +24 -24
  32. package/templates/init/AGENTS.md +155 -155
  33. package/templates/init/CLAUDE.md +157 -157
  34. package/templates/init/test-runs/README.md +45 -45
  35. package/templates/playwright/BasePage.template.ts +190 -190
  36. package/templates/playwright/auth.setup.template.ts +89 -89
  37. package/templates/playwright/dataGenerators.helper.template.ts +148 -148
  38. package/templates/playwright/dateUtils.helper.template.ts +96 -96
  39. package/templates/playwright/pages.fixture.template.ts +50 -50
  40. package/templates/playwright/playwright.config.template.ts +97 -97
  41. package/templates/playwright/reporters/bugzy-reporter.ts +454 -454
  42. package/dist/templates/init/.bugzy/runtime/knowledge-base.md +0 -61
  43. package/dist/templates/init/.bugzy/runtime/knowledge-maintenance-guide.md +0 -97
  44. package/dist/templates/init/.bugzy/runtime/project-context.md +0 -35
  45. package/dist/templates/init/.bugzy/runtime/subagent-memory-guide.md +0 -87
  46. package/dist/templates/init/.bugzy/runtime/templates/test-plan-template.md +0 -50
  47. package/dist/templates/init/.bugzy/runtime/templates/test-result-schema.md +0 -498
  48. package/dist/templates/init/.bugzy/runtime/test-execution-strategy.md +0 -535
  49. package/dist/templates/init/.bugzy/runtime/testing-best-practices.md +0 -632
  50. package/dist/templates/init/.gitignore-template +0 -25
package/dist/index.cjs CHANGED
@@ -73,14 +73,20 @@ var MCP_SERVERS = {
73
73
  teams: {
74
74
  provider: "teams",
75
75
  name: "Microsoft Teams",
76
- description: "Microsoft Teams MCP server for messaging and channel operations",
76
+ description: "Microsoft Teams MCP server for messaging via Bot Connector API",
77
77
  requiresCredentials: true,
78
78
  npmPackages: ["@bugzy-ai/teams-mcp-server"],
79
79
  config: {
80
80
  command: "teams-mcp-server",
81
81
  args: [],
82
82
  env: {
83
- TEAMS_ACCESS_TOKEN: "${TEAMS_ACCESS_TOKEN}"
83
+ // Bot credentials (platform-level, from Bugzy's Azure Bot registration)
84
+ TEAMS_BOT_APP_ID: "${TEAMS_BOT_APP_ID}",
85
+ TEAMS_BOT_APP_PASSWORD: "${TEAMS_BOT_APP_PASSWORD}",
86
+ TEAMS_BOT_TENANT_ID: "${TEAMS_BOT_TENANT_ID}",
87
+ // Conversation context (per-project, from stored conversation reference)
88
+ TEAMS_SERVICE_URL: "${TEAMS_SERVICE_URL}",
89
+ TEAMS_CONVERSATION_ID: "${TEAMS_CONVERSATION_ID}"
84
90
  }
85
91
  }
86
92
  },
@@ -186,7 +192,7 @@ var MCP_SERVERS = {
186
192
  AZURE_DEVOPS_PAT: "${AZURE_DEVOPS_PAT}"
187
193
  }
188
194
  }
189
- }
195
+ },
190
196
  // github-modelcontextprotocol: {
191
197
  // provider: 'github',
192
198
  // name: 'GitHub',
@@ -213,21 +219,21 @@ var MCP_SERVERS = {
213
219
  // },
214
220
  // },
215
221
  // },
216
- // jira: {
217
- // provider: 'jira',
218
- // name: 'Jira',
219
- // description: 'Jira MCP server for issue tracking',
220
- // requiresCredentials: true,
221
- // config: {
222
- // command: 'npx',
223
- // args: ['-y', '@modelcontextprotocol/server-jira'],
224
- // env: {
225
- // JIRA_URL: '${JIRA_URL}',
226
- // JIRA_EMAIL: '${JIRA_EMAIL}',
227
- // JIRA_API_TOKEN: '${JIRA_API_TOKEN}',
228
- // },
229
- // },
230
- // },
222
+ jira: {
223
+ provider: "jira",
224
+ name: "Jira Cloud",
225
+ description: "Jira Cloud MCP server for issue tracking (REST API v3)",
226
+ requiresCredentials: true,
227
+ npmPackages: ["@bugzy-ai/jira-cloud-mcp-server"],
228
+ config: {
229
+ command: "jira-cloud-mcp-server",
230
+ args: [],
231
+ env: {
232
+ JIRA_CLOUD_TOKEN: "${JIRA_CLOUD_TOKEN}",
233
+ JIRA_CLOUD_ID: "${JIRA_CLOUD_ID}"
234
+ }
235
+ }
236
+ }
231
237
  // confluence: {
232
238
  // provider: 'confluence',
233
239
  // name: 'Confluence',
@@ -5720,7 +5726,7 @@ var SUBAGENTS = {
5720
5726
  icon: "bot",
5721
5727
  integrations: [
5722
5728
  // INTEGRATIONS.linear,
5723
- // INTEGRATIONS.jira,
5729
+ INTEGRATIONS.jira,
5724
5730
  INTEGRATIONS["jira-server"],
5725
5731
  INTEGRATIONS["azure-devops"],
5726
5732
  INTEGRATIONS.notion,