@bugzy-ai/bugzy 1.2.1 → 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 CHANGED
@@ -4,9 +4,19 @@
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
5
5
  [![Node Version](https://img.shields.io/node/v/@bugzy-ai/bugzy.svg)](https://nodejs.org)
6
6
 
7
- > Open-source AI agent configuration for QA automation with Claude Code
7
+ > Open-source AI agent configuration for QA automation
8
8
 
9
- Bugzy is a CLI tool that manages AI agent configuration and starts Claude Code sessions with properly configured subagents, tasks, and MCP servers for test automation.
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/ # 8 task slash 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
- │ └── .mcp.json # MCP server configuration
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
- - **Claude Code** installed and configured
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
- ### Claude Code Not Found
232
+ ### AI Tool Not Found
215
233
 
216
- Install Claude Code and ensure it's in your PATH.
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