@brokkai/brokk-town-linux-arm64 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.
package/BUILD.json CHANGED
@@ -1 +1 @@
1
- {"commit": "8006469e2b861513f469c4b481b551cc22ce1594", "tag": "v0.1.0", "target": "linux-arm64"}
1
+ {"commit": "f75803f0b79af78c32e55de064f1ee589714b9e3", "tag": "v0.1.1", "target": "linux-arm64"}
package/README.md CHANGED
@@ -70,10 +70,11 @@ a commit shipped. Columns, prompts and transitions are not programmable.
70
70
  ## Installation and releases
71
71
 
72
72
  Source is published at [BrokkAi/brokk-town](https://github.com/BrokkAi/brokk-town).
73
- The bootstrap prerelease is available on npm:
73
+ The stable release is available from [GitHub](https://github.com/BrokkAi/brokk-town/releases/tag/v0.1.0)
74
+ and npm:
74
75
 
75
76
  ```sh
76
- npm install -g @brokkai/brokk-town@next
77
+ npm install -g @brokkai/brokk-town
77
78
  ```
78
79
 
79
80
  You can also build from source as above or install the current branch:
@@ -84,8 +85,8 @@ go install github.com/BrokkAi/brokk-town/cmd/bt@master
84
85
 
85
86
  The release pipeline builds checksum-verified Linux/macOS archives for amd64 and
86
87
  arm64, plus `@brokkai/brokk-town` and four native npm packages. All packages carry
87
- the project license, attribution, and complete third-party notices. The initial `0.1.0-rc.1` npm bootstrap is published. After the first stable GitHub
88
- release, the supported installer commands are:
88
+ the project license, attribution, and complete third-party notices. The supported
89
+ installer commands are:
89
90
 
90
91
  ```sh
91
92
  sh install.sh # From a checkout; defaults to ~/.local/bin
@@ -100,24 +101,13 @@ for first-release setup, access checks, publishing, and recovery.
100
101
 
101
102
  ## Connect real repositories
102
103
 
103
- Install and authenticate `git`, GitHub CLI (`gh`), your chosen coding agent, and
104
- Brokk bot releases that advertise **Town Worker Protocol v1**. Town no longer
105
- compiles the bots into `bt`; each dispatch starts the installed `bbb`, `bfb`,
106
- `bib`, `brv`, or `brb` executable from the service PATH and communicates over a
107
- private Unix socket. Run `<command> version` and `<command> worker --help` to
108
- confirm a compatible release.
104
+ Install and authenticate `git`, GitHub CLI (`gh`), Node.js/npm, and your chosen
105
+ coding agent. Town does not require a separate bot installation: each dispatch
106
+ uses `npx --yes` with an exact compatible release of bug-bot, feature-bot,
107
+ issue-bot, review-bot, or release-bot, then communicates with it over a private
108
+ Unix socket. Town never selects an ambient or floating bot version.
109
109
 
110
- Install the released Worker Protocol v1 npm distributions:
111
-
112
- ```sh
113
- npm install -g @brokkai/bug-bot@0.3.1 \
114
- @brokkai/feature-bot@0.1.1 \
115
- @brokkai/issue-bot@0.5.1 \
116
- @brokkai/review-bot@0.2.1 \
117
- @brokkai/release-bot@0.5.1
118
- ```
119
-
120
- Checksum-verified native bot releases are equally supported. The worker uses
110
+ The worker uses
121
111
  standard-library HTTP/JSON, negotiates protocol and capabilities before work,
122
112
  streams contiguous progress events, and returns explicit typed results. It never
123
113
  requires Town to parse bot-private state. See
@@ -128,11 +118,10 @@ requires Node.js and `npx`. Choose another harness in Settings as described belo
128
118
  Git must already be able to clone and push your GitHub repositories; Town uses
129
119
  the current Git/gh credentials.
130
120
 
131
- Bot executables can be replaced while the Town service remains running. The next
132
- dispatch resolves PATH again and negotiates with the new service. An active
133
- dispatch pins its resolved path, executable hash, and reported version, then
134
- rechecks all three; a mid-dispatch replacement fails uncertainly and is resolved
135
- through durable bot state and GitHub reconciliation.
121
+ Town resolves and hashes the `npx` executable for every dispatch and rechecks it
122
+ and the pinned bot's reported version afterward. A mid-dispatch executable or
123
+ version change fails uncertainly and is resolved through durable bot state and
124
+ GitHub reconciliation.
136
125
 
137
126
  ```sh
138
127
  ./bin/bt serve --repo BrokkAi/my-project
package/bin/bt CHANGED
Binary file
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",