@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 +1 -1
- package/README.md +15 -26
- package/bin/bt +0 -0
- package/package.json +1 -1
package/BUILD.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"commit": "
|
|
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
|
|
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
|
|
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
|
|
88
|
-
|
|
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
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
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
|
-
|
|
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
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
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