@bugzy-ai/bugzy 1.2.1 → 1.4.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 +30 -9
- package/dist/cli/index.cjs +549 -155
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.js +552 -158
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +96 -33
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +96 -33
- package/dist/index.js.map +1 -1
- package/dist/subagents/index.cjs +6 -3
- package/dist/subagents/index.cjs.map +1 -1
- package/dist/subagents/index.js +6 -3
- package/dist/subagents/index.js.map +1 -1
- package/dist/subagents/metadata.cjs +6 -3
- package/dist/subagents/metadata.cjs.map +1 -1
- package/dist/subagents/metadata.js +6 -3
- package/dist/subagents/metadata.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
|
@@ -4,9 +4,19 @@
|
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
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
|
|
|
@@ -61,19 +71,21 @@ 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 |
|
|
@@ -104,6 +116,7 @@ Bugzy uses a simple configuration format:
|
|
|
104
116
|
```json
|
|
105
117
|
{
|
|
106
118
|
"version": "1.0.0",
|
|
119
|
+
"tool": "claude-code",
|
|
107
120
|
"project": {
|
|
108
121
|
"name": "my-project"
|
|
109
122
|
},
|
|
@@ -116,6 +129,8 @@ Bugzy uses a simple configuration format:
|
|
|
116
129
|
}
|
|
117
130
|
```
|
|
118
131
|
|
|
132
|
+
The `tool` field can be `"claude-code"` (default), `"cursor"` (experimental), or `"codex"` (experimental).
|
|
133
|
+
|
|
119
134
|
**Don't edit `config.json` manually** - use `bugzy setup` to reconfigure.
|
|
120
135
|
|
|
121
136
|
## Environment Variables
|
|
@@ -153,7 +168,10 @@ Check out example configurations:
|
|
|
153
168
|
## Requirements
|
|
154
169
|
|
|
155
170
|
- **Node.js** v18 or higher
|
|
156
|
-
- **
|
|
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
|
|
157
175
|
- **npm** or **yarn** package manager
|
|
158
176
|
|
|
159
177
|
## Breaking Changes (v0.2.0)
|
|
@@ -211,9 +229,12 @@ npm install -g @bugzy-ai/bugzy
|
|
|
211
229
|
|
|
212
230
|
Add the missing secret to your `.env` file.
|
|
213
231
|
|
|
214
|
-
###
|
|
232
|
+
### AI Tool Not Found
|
|
215
233
|
|
|
216
|
-
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)
|
|
217
238
|
|
|
218
239
|
See the [Getting Started Guide](./docs/getting-started.md) for more troubleshooting tips.
|
|
219
240
|
|