@bugzy-ai/bugzy 1.2.0 → 1.3.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 +49 -27
- package/dist/cli/index.cjs +492 -144
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.js +495 -147
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +85 -30
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +85 -30
- package/dist/index.js.map +1 -1
- package/dist/tasks/index.cjs +28 -29
- package/dist/tasks/index.cjs.map +1 -1
- package/dist/tasks/index.js +28 -29
- package/dist/tasks/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/init/AGENTS.md +155 -0
package/README.md
CHANGED
|
@@ -1,17 +1,27 @@
|
|
|
1
1
|
# Bugzy
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/bugzy)
|
|
3
|
+
[](https://www.npmjs.com/package/@bugzy-ai/bugzy)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
|
-
[](https://nodejs.org)
|
|
5
|
+
[](https://nodejs.org)
|
|
6
6
|
|
|
7
|
-
> Open-source AI agent configuration for QA automation
|
|
7
|
+
> Open-source AI agent configuration for QA automation
|
|
8
8
|
|
|
9
|
-
Bugzy is a CLI tool that manages AI agent configuration
|
|
9
|
+
Bugzy is a CLI tool that manages AI agent configuration for your AI coding assistant, providing properly configured subagents, tasks, and MCP servers for test automation.
|
|
10
|
+
|
|
11
|
+
## Supported Tools
|
|
12
|
+
|
|
13
|
+
| Tool | Status | Description |
|
|
14
|
+
|------|--------|-------------|
|
|
15
|
+
| **Claude Code** | Recommended | Anthropic's official CLI - full feature support |
|
|
16
|
+
| **Cursor** | Experimental | VS Code-based AI editor |
|
|
17
|
+
| **Codex CLI** | Experimental | OpenAI's terminal-based agent |
|
|
18
|
+
|
|
19
|
+
> **Note**: Cursor and Codex support is experimental. Some features may not work as expected. Claude Code is the recommended and fully tested option.
|
|
10
20
|
|
|
11
21
|
## Features
|
|
12
22
|
|
|
13
|
-
- ✅ **Complete Task Library** -
|
|
14
|
-
- ✅ **Flexible Subagents** - Test Runner, Team Communicator, Documentation Researcher, Issue Tracker
|
|
23
|
+
- ✅ **Complete Task Library** - 7 pre-built QA automation tasks
|
|
24
|
+
- ✅ **Flexible Subagents** - Test Runner, Test Code Generator, Test Debugger & Fixer, Team Communicator, Documentation Researcher, Issue Tracker
|
|
15
25
|
- ✅ **Easy Setup** - Interactive CLI configuration (`bugzy setup`)
|
|
16
26
|
- ✅ **Local Execution** - Runs entirely on your machine with Claude Code
|
|
17
27
|
- ✅ **Version Control Friendly** - Configuration stored in git-friendly files
|
|
@@ -23,7 +33,7 @@ Bugzy is a CLI tool that manages AI agent configuration and starts Claude Code s
|
|
|
23
33
|
|
|
24
34
|
```bash
|
|
25
35
|
# Install globally
|
|
26
|
-
npm install -g bugzy
|
|
36
|
+
npm install -g @bugzy-ai/bugzy
|
|
27
37
|
|
|
28
38
|
# Navigate to your project
|
|
29
39
|
cd my-project
|
|
@@ -61,40 +71,43 @@ After running `bugzy setup`, your project will have:
|
|
|
61
71
|
```
|
|
62
72
|
your-project/
|
|
63
73
|
├── .bugzy/
|
|
64
|
-
│ ├── config.json # Your subagent configuration
|
|
74
|
+
│ ├── config.json # Your subagent configuration (includes selected tool)
|
|
65
75
|
│ └── runtime/
|
|
66
76
|
│ ├── project-context.md # Project information
|
|
67
77
|
│ └── templates/ # Customizable templates
|
|
68
|
-
├── .claude/
|
|
69
|
-
│ ├── commands/ #
|
|
78
|
+
├── .<tool>/ # Tool-specific directory (.claude/, .cursor/, or .codex/)
|
|
79
|
+
│ ├── commands/ # Task commands (or prompts/ for Codex)
|
|
70
80
|
│ ├── agents/ # Configured subagent prompts
|
|
71
|
-
│ └──
|
|
81
|
+
│ └── mcp.json # MCP server configuration
|
|
72
82
|
├── .env.example # MCP secrets template (empty values)
|
|
73
83
|
├── .env.testdata # Test data with actual values (from /generate-test-plan)
|
|
74
84
|
└── .env # Your actual secrets (gitignored)
|
|
75
85
|
```
|
|
76
86
|
|
|
87
|
+
> **Note**: The directory structure varies by tool. Claude Code uses `.claude/`, Cursor uses `.cursor/`, and Codex uses `.codex/`.
|
|
88
|
+
|
|
77
89
|
## Available Subagents
|
|
78
90
|
|
|
79
91
|
| Subagent | Purpose | Integrations | Required |
|
|
80
92
|
|----------|---------|--------------|----------|
|
|
81
|
-
| **Test Runner** | Execute automated tests | Playwright | ✅ Yes |
|
|
82
|
-
| **
|
|
93
|
+
| **Test Runner** | Execute automated browser tests | Playwright | ✅ Yes |
|
|
94
|
+
| **Test Code Generator** | Generate Playwright test scripts and Page Objects | Playwright | ✅ Yes |
|
|
95
|
+
| **Test Debugger & Fixer** | Debug and fix failing tests automatically | Playwright | ✅ Yes |
|
|
96
|
+
| **Team Communicator** | Send team notifications | Slack, Microsoft Teams | ❌ Optional |
|
|
83
97
|
| **Documentation Researcher** | Search documentation | Notion, Confluence | ❌ Optional |
|
|
84
|
-
| **Issue Tracker** | Create and track bugs | Linear, Jira, Notion, Slack | ❌ Optional |
|
|
98
|
+
| **Issue Tracker** | Create and track bugs | Linear, Jira Cloud, Jira Server, Notion, Slack | ❌ Optional |
|
|
85
99
|
|
|
86
100
|
## Available Tasks
|
|
87
101
|
|
|
88
102
|
| Task | Command | Description |
|
|
89
103
|
|------|---------|-------------|
|
|
104
|
+
| Explore Application | `/explore-application` | Explore and document application features |
|
|
90
105
|
| Generate Test Plan | `/generate-test-plan` | Create comprehensive test plans |
|
|
91
106
|
| Generate Test Cases | `/generate-test-cases` | Generate executable test cases |
|
|
92
|
-
|
|
|
93
|
-
|
|
|
94
|
-
|
|
|
95
|
-
|
|
|
96
|
-
| Handle Message | `/handle-message` | Process team messages |
|
|
97
|
-
| Process Event | `/process-event` | Handle automated events |
|
|
107
|
+
| Run Tests | `/run-tests` | Execute automated tests and analyze failures |
|
|
108
|
+
| Verify Changes | `/verify-changes` | Verify product changes via automated testing |
|
|
109
|
+
| Handle Message | `/handle-message` | Process team messages from Slack/Teams |
|
|
110
|
+
| Process Event | `/process-event` | Handle automated webhooks and events |
|
|
98
111
|
|
|
99
112
|
## Configuration
|
|
100
113
|
|
|
@@ -103,6 +116,7 @@ Bugzy uses a simple configuration format:
|
|
|
103
116
|
```json
|
|
104
117
|
{
|
|
105
118
|
"version": "1.0.0",
|
|
119
|
+
"tool": "claude-code",
|
|
106
120
|
"project": {
|
|
107
121
|
"name": "my-project"
|
|
108
122
|
},
|
|
@@ -115,6 +129,8 @@ Bugzy uses a simple configuration format:
|
|
|
115
129
|
}
|
|
116
130
|
```
|
|
117
131
|
|
|
132
|
+
The `tool` field can be `"claude-code"` (default), `"cursor"` (experimental), or `"codex"` (experimental).
|
|
133
|
+
|
|
118
134
|
**Don't edit `config.json` manually** - use `bugzy setup` to reconfigure.
|
|
119
135
|
|
|
120
136
|
## Environment Variables
|
|
@@ -152,7 +168,10 @@ Check out example configurations:
|
|
|
152
168
|
## Requirements
|
|
153
169
|
|
|
154
170
|
- **Node.js** v18 or higher
|
|
155
|
-
- **
|
|
171
|
+
- **AI Coding Tool**: One of the following installed and configured:
|
|
172
|
+
- **Claude Code** (recommended) - Anthropic's official CLI
|
|
173
|
+
- **Cursor** (experimental) - VS Code-based AI editor
|
|
174
|
+
- **Codex CLI** (experimental) - OpenAI's terminal-based agent
|
|
156
175
|
- **npm** or **yarn** package manager
|
|
157
176
|
|
|
158
177
|
## Breaking Changes (v0.2.0)
|
|
@@ -199,7 +218,7 @@ Bugzy will detect your existing configuration and allow you to make changes.
|
|
|
199
218
|
### Command Not Found
|
|
200
219
|
|
|
201
220
|
```bash
|
|
202
|
-
npm install -g bugzy
|
|
221
|
+
npm install -g @bugzy-ai/bugzy
|
|
203
222
|
```
|
|
204
223
|
|
|
205
224
|
### Missing Secrets
|
|
@@ -210,9 +229,12 @@ npm install -g bugzy
|
|
|
210
229
|
|
|
211
230
|
Add the missing secret to your `.env` file.
|
|
212
231
|
|
|
213
|
-
###
|
|
232
|
+
### AI Tool Not Found
|
|
214
233
|
|
|
215
|
-
Install
|
|
234
|
+
Install your selected AI coding tool and ensure it's in your PATH:
|
|
235
|
+
- **Claude Code**: Install from [claude.ai/code](https://claude.ai/code)
|
|
236
|
+
- **Cursor**: Install from [cursor.com](https://cursor.com)
|
|
237
|
+
- **Codex CLI**: Install from [OpenAI](https://github.com/openai/codex)
|
|
216
238
|
|
|
217
239
|
See the [Getting Started Guide](./docs/getting-started.md) for more troubleshooting tips.
|
|
218
240
|
|
|
@@ -231,7 +253,7 @@ A: In `.env` which is gitignored. `.env.example` (MCP secrets template) and `.en
|
|
|
231
253
|
A: You can customize templates in `.bugzy/runtime/templates/`.
|
|
232
254
|
|
|
233
255
|
**Q: How do I update to get new tasks?**
|
|
234
|
-
A: Run `npm update -g bugzy && bugzy setup`
|
|
256
|
+
A: Run `npm update -g @bugzy-ai/bugzy && bugzy setup`
|
|
235
257
|
|
|
236
258
|
## License
|
|
237
259
|
|
|
@@ -243,6 +265,6 @@ Contributions are welcome! Please read our contributing guidelines (coming soon)
|
|
|
243
265
|
|
|
244
266
|
## Support
|
|
245
267
|
|
|
246
|
-
- **Issues**: [github.com/bugzy-ai/bugzy
|
|
247
|
-
- **Discussions**: [github.com/bugzy-ai/bugzy
|
|
268
|
+
- **Issues**: [github.com/bugzy-ai/bugzy/issues](https://github.com/bugzy-ai/bugzy/issues)
|
|
269
|
+
- **Discussions**: [github.com/bugzy-ai/bugzy/discussions](https://github.com/bugzy-ai/bugzy/discussions)
|
|
248
270
|
- **Documentation**: [docs.bugzy.dev](https://docs.bugzy.dev)
|