@bugzy-ai/bugzy 1.4.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.
- package/README.md +10 -7
- package/dist/cli/index.cjs +6208 -5586
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.js +6208 -5586
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +5588 -5040
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -4
- package/dist/index.d.ts +5 -4
- package/dist/index.js +5585 -5038
- package/dist/index.js.map +1 -1
- package/dist/subagents/index.cjs +635 -48
- package/dist/subagents/index.cjs.map +1 -1
- package/dist/subagents/index.js +635 -48
- package/dist/subagents/index.js.map +1 -1
- package/dist/subagents/metadata.cjs +21 -1
- package/dist/subagents/metadata.cjs.map +1 -1
- package/dist/subagents/metadata.d.cts +1 -0
- package/dist/subagents/metadata.d.ts +1 -0
- package/dist/subagents/metadata.js +21 -1
- package/dist/subagents/metadata.js.map +1 -1
- package/dist/tasks/index.cjs +864 -2391
- package/dist/tasks/index.cjs.map +1 -1
- package/dist/tasks/index.d.cts +48 -5
- package/dist/tasks/index.d.ts +48 -5
- package/dist/tasks/index.js +862 -2389
- package/dist/tasks/index.js.map +1 -1
- package/dist/templates/init/.bugzy/runtime/knowledge-base.md +61 -0
- package/dist/templates/init/.bugzy/runtime/knowledge-maintenance-guide.md +97 -0
- package/dist/templates/init/.bugzy/runtime/subagent-memory-guide.md +87 -0
- package/dist/templates/init/.bugzy/runtime/templates/test-plan-template.md +41 -16
- package/dist/templates/init/.bugzy/runtime/templates/test-result-schema.md +498 -0
- package/dist/templates/init/.bugzy/runtime/test-execution-strategy.md +535 -0
- package/dist/templates/init/.bugzy/runtime/testing-best-practices.md +368 -14
- package/dist/templates/init/.gitignore-template +23 -2
- package/package.json +1 -1
- package/templates/init/.bugzy/runtime/templates/test-plan-template.md +41 -16
- 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** -
|
|
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
|
|
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,
|
|
97
|
-
| **Documentation Researcher** | Search documentation | Notion
|
|
98
|
-
| **Issue Tracker** | Create and track bugs |
|
|
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": "
|
|
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
|
-
|
|
147
|
+
RESEND_API_KEY=re_...
|
|
145
148
|
|
|
146
149
|
# Test Configuration
|
|
147
150
|
TEST_BASE_URL=http://localhost:3000
|