@bugzy-ai/bugzy 1.5.0 → 1.6.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 (36) hide show
  1. package/README.md +10 -7
  2. package/dist/cli/index.cjs +6168 -5848
  3. package/dist/cli/index.cjs.map +1 -1
  4. package/dist/cli/index.js +6168 -5848
  5. package/dist/cli/index.js.map +1 -1
  6. package/dist/index.cjs +5563 -5302
  7. package/dist/index.cjs.map +1 -1
  8. package/dist/index.d.cts +5 -4
  9. package/dist/index.d.ts +5 -4
  10. package/dist/index.js +5560 -5300
  11. package/dist/index.js.map +1 -1
  12. package/dist/subagents/index.cjs +368 -51
  13. package/dist/subagents/index.cjs.map +1 -1
  14. package/dist/subagents/index.js +368 -51
  15. package/dist/subagents/index.js.map +1 -1
  16. package/dist/subagents/metadata.cjs +10 -2
  17. package/dist/subagents/metadata.cjs.map +1 -1
  18. package/dist/subagents/metadata.js +10 -2
  19. package/dist/subagents/metadata.js.map +1 -1
  20. package/dist/tasks/index.cjs +864 -2391
  21. package/dist/tasks/index.cjs.map +1 -1
  22. package/dist/tasks/index.d.cts +48 -5
  23. package/dist/tasks/index.d.ts +48 -5
  24. package/dist/tasks/index.js +862 -2389
  25. package/dist/tasks/index.js.map +1 -1
  26. package/dist/templates/init/.bugzy/runtime/knowledge-base.md +61 -0
  27. package/dist/templates/init/.bugzy/runtime/knowledge-maintenance-guide.md +97 -0
  28. package/dist/templates/init/.bugzy/runtime/subagent-memory-guide.md +87 -0
  29. package/dist/templates/init/.bugzy/runtime/templates/test-plan-template.md +41 -16
  30. package/dist/templates/init/.bugzy/runtime/templates/test-result-schema.md +498 -0
  31. package/dist/templates/init/.bugzy/runtime/test-execution-strategy.md +535 -0
  32. package/dist/templates/init/.bugzy/runtime/testing-best-practices.md +368 -14
  33. package/dist/templates/init/.gitignore-template +23 -2
  34. package/package.json +1 -1
  35. package/templates/init/.bugzy/runtime/templates/test-plan-template.md +41 -16
  36. package/templates/init/.env.testdata +18 -0
package/README.md CHANGED
@@ -20,7 +20,7 @@ Bugzy is a CLI tool that manages AI agent configuration for your AI coding assis
20
20
 
21
21
  ## Features
22
22
 
23
- - ✅ **Complete Task Library** - 7 pre-built QA automation tasks
23
+ - ✅ **Complete Task Library** - 8 pre-built QA automation tasks
24
24
  - ✅ **Flexible Subagents** - Test Runner, Test Code Generator, Test Debugger & Fixer, Team Communicator, Documentation Researcher, Issue Tracker
25
25
  - ✅ **Easy Setup** - Interactive CLI configuration (`bugzy setup`)
26
26
  - ✅ **Local Execution** - Runs entirely on your machine with Claude Code
@@ -61,7 +61,7 @@ bugzy "generate test plan for user authentication"
61
61
  # Or use slash commands in Claude Code
62
62
  /generate-test-plan for checkout flow
63
63
  /run-tests for payment processing
64
- /verify-changes-slack deployed new feature
64
+ /verify-changes deployed new feature
65
65
  ```
66
66
 
67
67
  ## What Gets Created
@@ -93,9 +93,9 @@ your-project/
93
93
  | **Test Runner** | Execute automated browser tests | Playwright | ✅ Yes |
94
94
  | **Test Code Generator** | Generate Playwright test scripts and Page Objects | Playwright | ✅ Yes |
95
95
  | **Test Debugger & Fixer** | Debug and fix failing tests automatically | Playwright | ✅ Yes |
96
- | **Team Communicator** | Send team notifications | Slack, Microsoft Teams | Optional |
97
- | **Documentation Researcher** | Search documentation | Notion, Confluence | ❌ Optional |
98
- | **Issue Tracker** | Create and track bugs | Linear, Jira Cloud, Jira Server, Notion, Slack | ❌ Optional |
96
+ | **Team Communicator** | Send team notifications | Slack, Teams, Email, Local (CLI) | Yes (auto-configured) |
97
+ | **Documentation Researcher** | Search documentation | Notion | ❌ Optional |
98
+ | **Issue Tracker** | Create and track bugs | Jira Server, Notion, Slack | ❌ Optional |
99
99
 
100
100
  ## Available Tasks
101
101
 
@@ -106,6 +106,7 @@ your-project/
106
106
  | Generate Test Cases | `/generate-test-cases` | Generate executable test cases |
107
107
  | Run Tests | `/run-tests` | Execute automated tests and analyze failures |
108
108
  | Verify Changes | `/verify-changes` | Verify product changes via automated testing |
109
+ | Onboard Testing | `/onboard-testing` | Complete workflow: explore → plan → cases → test → fix → report |
109
110
  | Handle Message | `/handle-message` | Process team messages from Slack/Teams |
110
111
  | Process Event | `/process-event` | Handle automated webhooks and events |
111
112
 
@@ -124,7 +125,7 @@ Bugzy uses a simple configuration format:
124
125
  "test-runner": "playwright",
125
126
  "team-communicator": "slack",
126
127
  "documentation-researcher": "notion",
127
- "issue-tracker": "linear"
128
+ "issue-tracker": "jira-server"
128
129
  }
129
130
  }
130
131
  ```
@@ -133,6 +134,8 @@ The `tool` field can be `"claude-code"` (default), `"cursor"` (experimental), or
133
134
 
134
135
  **Don't edit `config.json` manually** - use `bugzy setup` to reconfigure.
135
136
 
137
+ > **Note**: When using CLI (`bugzy`), the `team-communicator` is automatically configured to use terminal-based communication. No setup required.
138
+
136
139
  ## Environment Variables
137
140
 
138
141
  Bugzy loads environment variables for MCP servers and test configuration:
@@ -141,7 +144,7 @@ Bugzy loads environment variables for MCP servers and test configuration:
141
144
  # MCP Secrets
142
145
  SLACK_BOT_TOKEN=xoxb-...
143
146
  NOTION_TOKEN=secret_...
144
- LINEAR_API_KEY=lin_api_...
147
+ RESEND_API_KEY=re_...
145
148
 
146
149
  # Test Configuration
147
150
  TEST_BASE_URL=http://localhost:3000