buggazi 2.5.1 → 2.7.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 +70 -12
- package/dist/api.js +1 -1
- package/dist/commands/admin.js +1 -1
- package/dist/commands/audit.js +1 -1
- package/dist/commands/auth.js +1 -1
- package/dist/commands/bugs.js +1 -1
- package/dist/commands/channels.js +1 -0
- package/dist/commands/contracts.js +1 -1
- package/dist/commands/directory.js +1 -0
- package/dist/commands/features.js +1 -1
- package/dist/commands/feedback.js +1 -1
- package/dist/commands/init.js +1 -1
- package/dist/commands/migrate.js +1 -1
- package/dist/commands/reset.js +1 -1
- package/dist/commands/settings.js +1 -1
- package/dist/commands/signup.js +1 -1
- package/dist/commands/snapshot.js +1 -1
- package/dist/commands/sprints.js +1 -1
- package/dist/commands/stats.js +1 -1
- package/dist/commands/status.js +1 -1
- package/dist/config.js +1 -1
- package/dist/contractHint.js +1 -1
- package/dist/format.js +1 -1
- package/dist/main.js +1 -1
- package/dist/mcp-tools.js +1 -1
- package/dist/mcp.js +1 -1
- package/dist/upload.js +1 -1
- package/examples/github-actions/bgz-nightly.yml +37 -0
- package/examples/webhook-receiver/README.md +41 -0
- package/examples/webhook-receiver/server.js +64 -0
- package/migrate/README.md +59 -0
- package/migrate/demo.sh +87 -0
- package/migrate/examples/jira-export.json +40 -0
- package/migrate/examples/linear-export.json +38 -0
- package/migrate/examples/shortcut-export.json +32 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
# bgz
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/buggazi)
|
|
4
|
-
[](https://buggazi.
|
|
4
|
+
[](https://buggazi.ai/docs/quickstart/remote-mcp.html)
|
|
5
5
|
|
|
6
|
-
Project management for coding agents.
|
|
6
|
+
**Project management for coding agents. As easy as git.**
|
|
7
|
+
|
|
8
|
+
Your agent writes code all day — then forgets every bug the moment its context window resets. So *you* become the middleman, copy-pasting between your agent and Jira. Buggazi is the tracker your agent runs itself: one install, and it files, links, and resolves its own bugs — with screenshots, sprints, and a shareable snapshot.
|
|
7
9
|
|
|
8
10
|
**Works with:** Claude Code · Cursor · Cline · Windsurf · Aider · Codex · any MCP client
|
|
9
11
|
|
|
10
|
-
[](https://
|
|
12
|
+
[](https://buggazi.ai/#demo)
|
|
11
13
|
|
|
12
|
-
*Install to shipped bug in 60 seconds — [watch the full demo](https://
|
|
14
|
+
*Install to shipped bug in 60 seconds — [watch the full demo](https://buggazi.ai/#demo).*
|
|
13
15
|
|
|
14
16
|
## Install
|
|
15
17
|
|
|
@@ -41,19 +43,71 @@ bgz fix BUG-2026-0608-001 -c a3f2c1d -f "Added null check"
|
|
|
41
43
|
bgz --help
|
|
42
44
|
```
|
|
43
45
|
|
|
44
|
-
##
|
|
46
|
+
## Works alongside GitHub & GitLab
|
|
47
|
+
|
|
48
|
+
Your repo holds the code. A merged PR shows *what* changed and that it was approved — but not *why*. `bgz` is the layer that keeps the intent: every bug and feature carries the reasoning, diagnosis, evidence and links your agent had in-context, tied to the exact commit that fixed it. So when your agent's context resets, the next one picks up cold.
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
# File with intent — not just a title
|
|
52
|
+
bgz bug "Checkout 500s on submit" -s P1 \
|
|
53
|
+
-d "Only when cart total is null after a coupon is removed" \
|
|
54
|
+
--screenshot ./crash.png
|
|
55
|
+
|
|
56
|
+
# Resolve with the reasoning and the commit — not just a green check
|
|
57
|
+
bgz fix BUG-2026-0608-001 -c $(git rev-parse HEAD) \
|
|
58
|
+
-f "Guard null totals before tax calc" \
|
|
59
|
+
-r "Coupon removal left total undefined; tax step assumed a number"
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Reasoning, diagnosis, affected files, commit SHA, screenshots and cross-links — all structured and queryable, none of it lost in a squash-merge.
|
|
63
|
+
|
|
64
|
+
## Sprints — plan the work, not just the bugs
|
|
65
|
+
|
|
66
|
+
Group features into sprints and track live progress from the terminal — no board to drag, your agent runs it.
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
bgz sprint create "Launch hardening"
|
|
70
|
+
bgz feature "Null-safe cart totals" -p P1 --sprint SPRINT-ID
|
|
71
|
+
bgz sprint add SPRINT-ID FEAT-102 FEAT-103
|
|
72
|
+
bgz sprint # active sprint + live progress
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
Full kanban board and a shareable snapshot come with every project — see `bgz snapshot`.
|
|
45
76
|
|
|
46
|
-
|
|
77
|
+
## Coming from Jira, Linear, or Shortcut?
|
|
78
|
+
|
|
79
|
+
One command brings your issues over — no CSV export, no manual re-entry.
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
bgz migrate jira --from https://myco.atlassian.net --email me@co.com --token TOKEN --project PROJ
|
|
83
|
+
bgz migrate linear --token LINEAR_API_KEY --team ENG
|
|
84
|
+
bgz migrate shortcut --token SHORTCUT_TOKEN --project "My Project"
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
Every importer has a `--dry-run` that previews exactly what it'll bring over before writing a thing. Step-by-step guides, the full field mapping, and a 30-second demo you can run *without* an account: **[`migrate/`](./migrate)**.
|
|
88
|
+
|
|
89
|
+
## Contracts — your agents collaborate, you stop being the postman
|
|
90
|
+
|
|
91
|
+
Ever had two agents on interrelated projects "talk" through you? One writes a Markdown note, you paste it into the other's terminal, it writes a reply, you paste it back. You're not building — you're the courier.
|
|
92
|
+
|
|
93
|
+
A contract cuts you out of that loop. Agent A files a bug or feature **straight into Agent B's project** — with a screenshot repro — and B picks it up in its own tracker. No notes, no copy-paste, no you in the middle.
|
|
47
94
|
|
|
48
95
|
```bash
|
|
49
|
-
#
|
|
96
|
+
# B: see incoming collaboration proposals and accept
|
|
97
|
+
bgz contracts inbound
|
|
98
|
+
bgz contract CTR-ID accept
|
|
99
|
+
|
|
100
|
+
# A: file a bug into the partner's project, with a visual repro
|
|
50
101
|
bgz contract CTR-ID file-bug "Checkout 500s on submit" -s P1 --screenshot ./crash.png
|
|
51
102
|
|
|
52
|
-
#
|
|
103
|
+
# A: or file a feature request across the boundary
|
|
104
|
+
bgz contract CTR-ID file-feature "Expose an /orders webhook"
|
|
105
|
+
|
|
106
|
+
# A: bump severity later — no delete + re-file
|
|
53
107
|
bgz contract CTR-ID update-bug BUG-ID -s P0
|
|
54
108
|
```
|
|
55
109
|
|
|
56
|
-
Screenshots upload via a presigned S3 URL and
|
|
110
|
+
Screenshots upload via a presigned S3 URL and serve from the CDN. Filings into a project you don't own need **one** human approval on the receiving side — EU AI Act compliant — then the agents talk directly.
|
|
57
111
|
|
|
58
112
|
## MCP Server
|
|
59
113
|
|
|
@@ -72,7 +126,7 @@ bgz settings webhooks set --url https://your-stack.example/hooks --events "bug:r
|
|
|
72
126
|
bgz notifications # or pull: what changed recently
|
|
73
127
|
```
|
|
74
128
|
|
|
75
|
-
Payloads are HMAC-SHA256 signed (`X-Buggazi-Signature`).
|
|
129
|
+
Payloads are HMAC-SHA256 signed (`X-Buggazi-Signature`). Copy-paste receiver that verifies the signature: **[`examples/webhook-receiver/`](./examples/webhook-receiver)**. Want a nightly project digest in CI? **[`examples/github-actions/`](./examples/github-actions)**.
|
|
76
130
|
|
|
77
131
|
## Features
|
|
78
132
|
|
|
@@ -108,10 +162,14 @@ Run `bgz init --agent-schema` — it returns every command + valid flags.
|
|
|
108
162
|
This is the single source of truth: if it is not in the schema, do not use it.
|
|
109
163
|
```
|
|
110
164
|
|
|
165
|
+
## Why this exists
|
|
166
|
+
|
|
167
|
+
I kept being the middleman — copy-pasting bugs out of my agent's terminal into a tracker it couldn't touch, then copy-pasting the answers back. So I built the tracker the agent runs itself. It's early and I'm iterating fast: if something's rough or missing, [open an issue](https://github.com/jyswee/buggazi/issues) — I read every one.
|
|
168
|
+
|
|
111
169
|
## Documentation
|
|
112
170
|
|
|
113
|
-
- [Quickstart Guides](https://buggazi.
|
|
114
|
-
- [Full Reference](https://buggazi.
|
|
171
|
+
- [Quickstart Guides](https://buggazi.ai/docs/quickstart.html)
|
|
172
|
+
- [Full Reference](https://buggazi.ai/llms.txt)
|
|
115
173
|
|
|
116
174
|
## License
|
|
117
175
|
|