@brokkai/bug-bot 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -49,6 +49,7 @@ make build
49
49
  ./bin/bbb /path/to/your-repo --max-issues 2 --label bug
50
50
  ./bin/bbb /path/to/your-repo --model YOUR_MODEL_ID --effort low
51
51
  ./bin/bbb status /path/to/your-repo
52
+ ./bin/bbb version
52
53
  ./bin/bbb retry /path/to/your-repo --once
53
54
  ```
54
55
 
@@ -57,6 +58,8 @@ Source builds require Go 1.27.1. To install the local source as `bbb`, run
57
58
  Running `bbb` from inside any target repository discovers its remote and default
58
59
  branch. A Git URL also works. Flags can precede or follow the repository argument.
59
60
 
61
+ `bbb version` prints the embedded release tag. Local builds report `dev`; binaries installed with `go install ...@version` report the module version.
62
+
60
63
  Runtime requirements: Git, authenticated `gh` with repository/issue read and
61
64
  issue creation access, and an authenticated ACP agent. By default it uses an
62
65
  installed `codex-acp`, falling back to `npx --yes @agentclientprotocol/codex-acp`.
@@ -192,3 +195,16 @@ and install `bbb`. See [RELEASING.md](RELEASING.md) for publication and verifica
192
195
  API references: [GitHub issues](https://docs.github.com/en/rest/issues/issues),
193
196
  [issue comments](https://docs.github.com/en/rest/issues/comments).
194
197
  Licensed under [Apache-2.0](LICENSE).
198
+
199
+ ## Automatic releases
200
+
201
+ Push a new `v*` version tag to run the complete **Publish packages** pipeline:
202
+ Linux/macOS checks, native GitHub assets, then all five npm packages from the
203
+ same tag and commit. No manual package dispatch is needed. The package job runs
204
+ only after native publication succeeds and validates package contents and local
205
+ installs before uploading. It does not wait for npm's public index to update.
206
+
207
+ For recovery, rerun failed jobs or manually dispatch `publish-packages.yml` from
208
+ the exact existing tag with `publish=true`. The default manual `publish=false`
209
+ validates without uploading. Existing published bytes must match on retry.
210
+ See [RELEASING.md](RELEASING.md) for details.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.0",
2
+ "version": "0.1.1",
3
3
  "license": "Apache-2.0",
4
4
  "repository": {
5
5
  "type": "git",
@@ -25,9 +25,9 @@
25
25
  "arm64"
26
26
  ],
27
27
  "optionalDependencies": {
28
- "@brokkai/bug-bot-linux-x64": "0.1.0",
29
- "@brokkai/bug-bot-linux-arm64": "0.1.0",
30
- "@brokkai/bug-bot-darwin-x64": "0.1.0",
31
- "@brokkai/bug-bot-darwin-arm64": "0.1.0"
28
+ "@brokkai/bug-bot-linux-x64": "0.1.1",
29
+ "@brokkai/bug-bot-linux-arm64": "0.1.1",
30
+ "@brokkai/bug-bot-darwin-x64": "0.1.1",
31
+ "@brokkai/bug-bot-darwin-arm64": "0.1.1"
32
32
  }
33
33
  }