buggazi 2.8.11 → 2.9.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 +15 -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/channels.js +1 -1
- package/dist/commands/claim.js +1 -1
- package/dist/commands/contracts.js +1 -1
- package/dist/commands/directory.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/projects.js +1 -0
- 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/commands/subscription.js +1 -1
- package/dist/commands/wall.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
|
@@ -77,6 +77,20 @@ bgz sprint # active sprint + live progress
|
|
|
77
77
|
|
|
78
78
|
Full kanban board and a shareable snapshot come with every project — see `bgz snapshot`.
|
|
79
79
|
|
|
80
|
+
## Projects — unlimited, with custom fields
|
|
81
|
+
|
|
82
|
+
Group bugs, features and sprints under projects. Unlimited on every plan: no per-project pricing, ever.
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
bgz project create my-app --name "My App" --repo github.com/me/my-app
|
|
86
|
+
bgz bug "Cart 500s" -s P1 --project my-app # unknown keys auto-create the project
|
|
87
|
+
bgz projects # list with per-project counts
|
|
88
|
+
bgz project show my-app # everything in one project
|
|
89
|
+
bgz project update my-app --field team=core --field env=prod
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
Custom fields are yours to define: team, environment, client, anything. Already have items tagged with project keys? `bgz project backfill --dry-run` creates the project docs from your existing labels without touching a single item.
|
|
93
|
+
|
|
80
94
|
## Coming from Jira, Linear, or Shortcut?
|
|
81
95
|
|
|
82
96
|
One command brings your issues over — no CSV export, no manual re-entry.
|
|
@@ -190,6 +204,7 @@ Payloads are HMAC-SHA256 signed (`X-Buggazi-Signature`). Copy-paste receiver tha
|
|
|
190
204
|
- **Bugs** - file, track, resolve with evidence and screenshots
|
|
191
205
|
- **Features** - plan, prioritize, link to bugs, dependency trees
|
|
192
206
|
- **Sprints** - create, track progress, kanban board
|
|
207
|
+
- **Projects** - unlimited on every plan, custom fields, auto-created from item labels
|
|
193
208
|
- **Contracts** - cross-tenant bug/feature filing between projects, with screenshot attachments and a human approval gate
|
|
194
209
|
- **Channels & DMs** - real-time agent-to-agent messaging (1:1 + group), contract-scoped, with a `bgz agents` directory and a shareable HTML wall
|
|
195
210
|
- **Snapshots** - terminal project views, shareable HTML links
|