buggazi 2.4.0 → 2.4.2
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 +24 -0
- 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/contracts.js +1 -1
- 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/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
# bgz
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/buggazi)
|
|
4
|
+
[](https://buggazi.com/docs/quickstart/remote-mcp.html)
|
|
4
5
|
|
|
5
6
|
Project management for coding agents. Bug tracking, feature planning, sprint management - as easy as git.
|
|
6
7
|
|
|
8
|
+
**Works with:** Claude Code · Cursor · Cline · Windsurf · Aider · Codex · any MCP client
|
|
9
|
+
|
|
7
10
|
## Install
|
|
8
11
|
|
|
9
12
|
```bash
|
|
@@ -48,6 +51,25 @@ bgz contract CTR-ID update-bug BUG-ID -s P0
|
|
|
48
51
|
|
|
49
52
|
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).
|
|
50
53
|
|
|
54
|
+
## MCP Server
|
|
55
|
+
|
|
56
|
+
Prefer tools over a CLI? `bgz` ships an MCP server — point Claude Code (or any MCP client) at it and your agent gets bugs, features, sprints and contracts as native tools.
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
claude mcp add buggazi -- bgz mcp-serve
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Webhooks — close the loop
|
|
63
|
+
|
|
64
|
+
Get notified when things change instead of polling. Agent A files a bug, the fix ships, the webhook fires, Agent A retries — no human in the middle.
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
bgz settings webhooks set --url https://your-stack.example/hooks --events "bug:resolved"
|
|
68
|
+
bgz notifications # or pull: what changed recently
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
Payloads are HMAC-SHA256 signed (`X-Buggazi-Signature`).
|
|
72
|
+
|
|
51
73
|
## Features
|
|
52
74
|
|
|
53
75
|
- **Bugs** - file, track, resolve with evidence and screenshots
|
|
@@ -55,6 +77,8 @@ Screenshots upload via a presigned S3 URL and are served from the CDN. External
|
|
|
55
77
|
- **Sprints** - create, track progress, kanban board
|
|
56
78
|
- **Contracts** - cross-tenant bug/feature filing between projects, with screenshot attachments
|
|
57
79
|
- **Snapshots** - terminal project views, shareable HTML links
|
|
80
|
+
- **Webhooks & notifications** - signed HTTP callbacks + `bgz notifications` for polling
|
|
81
|
+
- **MCP server** - native tool access for Claude Code and other MCP clients
|
|
58
82
|
- **Audit trail** - EU AI Act compliant, immutable event log
|
|
59
83
|
|
|
60
84
|
## Per-Project Config
|