@brokkai/issue-bot-darwin-x64 0.3.0 → 0.3.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.
- package/BUILD.json +1 -1
- package/README.md +13 -7
- package/bin/bib +0 -0
- package/package.json +1 -1
package/BUILD.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"commit": "
|
|
1
|
+
{"commit": "77aa637c93df32b4af99f497e167c4b759c40196", "tag": "v0.3.1", "target": "darwin-amd64"}
|
package/README.md
CHANGED
|
@@ -53,6 +53,7 @@ bib --agent your-acp-agent --agent-arg=--stdio
|
|
|
53
53
|
bib --claim-timeout 15m
|
|
54
54
|
bib --draft=false
|
|
55
55
|
bib status
|
|
56
|
+
bib version
|
|
56
57
|
bib retry --issue 123 --once
|
|
57
58
|
```
|
|
58
59
|
|
|
@@ -62,6 +63,8 @@ prints saved JSON without starting an agent. `retry` resets pending/blocked
|
|
|
62
63
|
attempt budgets and resumes work; `--issue` restricts it to that issue. Run
|
|
63
64
|
`bib --help` for all flags.
|
|
64
65
|
|
|
66
|
+
`bib version` prints the embedded release tag. Local builds report `dev`; binaries installed with `go install ...@version` report the module version.
|
|
67
|
+
|
|
65
68
|
## How it works
|
|
66
69
|
|
|
67
70
|
1. Walk all open, unlocked issues, oldest first, with pagination. No label
|
|
@@ -205,13 +208,16 @@ data in the agent instructions, not as permission to broaden the task.
|
|
|
205
208
|
|
|
206
209
|
## Publishing npm packages
|
|
207
210
|
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
211
|
+
Pushing a `v*` version tag automatically runs CI, publishes the native GitHub
|
|
212
|
+
release, and uploads the four npm platform packages followed by the launcher.
|
|
213
|
+
Follow the **Publish packages** workflow for the complete pipeline; it keeps all
|
|
214
|
+
artifacts tied to the same tag and commit. No separate manual dispatch is needed.
|
|
215
|
+
|
|
216
|
+
The manual workflow remains available for recovery: dispatch from the existing
|
|
217
|
+
tag with its tag input and `publish=true`, or use `publish=false` for validation
|
|
218
|
+
only. Existing package bytes are checked for conflicts before uploading.
|
|
219
|
+
Successful uploads do not wait for npm's public version index or run immediate
|
|
220
|
+
public-install checks. Use the explicit registry `verify` command later if needed.
|
|
215
221
|
|
|
216
222
|
The workflow uses the `packages-publish` environment. Configure npm trusted
|
|
217
223
|
publishing for each of the five `@brokkai/issue-bot*` packages with repository
|
package/bin/bib
CHANGED
|
Binary file
|
package/package.json
CHANGED