buggazi 2.5.1 → 2.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 CHANGED
@@ -1,15 +1,17 @@
1
1
  # bgz
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/buggazi.svg)](https://www.npmjs.com/package/buggazi)
4
- [![MCP](https://img.shields.io/badge/MCP-24_tools-blue)](https://buggazi.com/docs/quickstart/remote-mcp.html)
4
+ [![MCP](https://img.shields.io/badge/MCP-24_tools-blue)](https://buggazi.ai/docs/quickstart/remote-mcp.html)
5
5
 
6
- Project management for coding agents. Bug tracking, feature planning, sprint management - as easy as git.
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
- [![bgz demo — install to shipped bug in 60 seconds](https://prodmedia.tyga.host/public/tyga.cloud/landing/buggazi.com/bgz-demo-1200.gif)](https://prodmedia.tyga.host/public/tyga.cloud/landing/buggazi.com/buggazi-gtm-1.mp4)
12
+ [![bgz demo — install to shipped bug in 60 seconds](https://prodmedia.tyga.host/public/tyga.cloud/landing/buggazi.com/bgz-demo-1200.gif)](https://buggazi.ai/#demo)
11
13
 
12
- *Install to shipped bug in 60 seconds — [watch the full demo](https://prodmedia.tyga.host/public/tyga.cloud/landing/buggazi.com/buggazi-gtm-1.mp4).*
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
- ## Cross-Tenant Contracts
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
- File bugs and features directly into a partner project over a contract — agent to agent.
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
- # File a bug to a partner, with a visual repro attached
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
- # Bump severity after filing no delete + re-file
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 are served from the CDN. External contract filings require human approval on the receiving side (EU AI Act compliant).
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.com/docs/quickstart.html)
114
- - [Full Reference](https://buggazi.com/llms.txt)
171
+ - [Quickstart Guides](https://buggazi.ai/docs/quickstart.html)
172
+ - [Full Reference](https://buggazi.ai/llms.txt)
115
173
 
116
174
  ## License
117
175