@brokkai/brokk-town-linux-x64 0.2.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 CHANGED
@@ -1 +1 @@
1
- {"commit": "5ded0114ffbfb578c085594166d62b6a4158eed3", "tag": "v0.2.0", "target": "linux-amd64"}
1
+ {"commit": "95bf612db25f0eed0c3954cf8a89238213eea030", "tag": "v0.3.1", "target": "linux-amd64"}
package/README.md CHANGED
@@ -190,10 +190,13 @@ GitHub reconciliation.
190
190
  ./bin/bt tui
191
191
  ```
192
192
 
193
- New towns start with the five automation workers **paused**. Repo-bot starts its
194
- read-only inventory. The town header shows whether the town is paused, awake,
193
+ Town starts and manages the bot libraries internally; the standalone bot CLIs are
194
+ not companion processes. New towns start with Bug Bot, Feature Bot, Issue Bot,
195
+ Review Bot, and Release Bot **paused**. Repo Bot starts its read-only inventory.
196
+ The town header shows whether the town is paused, awake,
195
197
  or partly awake, and its button offers the action that changes that state.
196
- Inspect the town, then start individual workers or choose **Wake the town**.
198
+ Inspect the town, then start individual workers or choose **Wake the town**, which
199
+ enables all five automation workers (except Release Bot under manual merge policy).
197
200
  Starting workers authorizes their real work: filing issues,
198
201
  creating and repairing PRs, posting reviews, merging under the configured policy,
199
202
  and publishing releases. Agents and verification commands run with your local
@@ -359,7 +362,8 @@ New external issues and PRs first wait at Town Hall for a durable Mayoral
359
362
  decision. **Admit** sends the work to Issue Bot or Review Bot; **Decline** keeps
360
363
  Town from acting on it without changing GitHub. Feature Bot proposals follow the
361
364
  same route by default and can be exempted in **Town Settings → External
362
- contributions**. The browser provides the primary decision UX; scripts may use
365
+ contributions**. A proposal is the town's own work, so declining one also closes
366
+ its issue as not planned; outside issues and PRs are only ignored. The browser provides the primary decision UX; scripts may use
363
367
  `bt admit --repo OWNER/REPO --task issue:123` or `bt decline ...`. Offered bot
364
368
  upgrades use the same commands with `--task upgrade:feature` (or another bot
365
369
  role), plus `bt delay ...` to be asked again in a day.
@@ -371,7 +375,10 @@ result. New commits invalidate review readiness. Uncertain reviews and exhausted
371
375
  repair cycles become visible tasks needing attention.
372
376
 
373
377
  The default merge policy is `bot`: auto-merge eligible Town-created PRs. `manual`
374
- leaves merging to the operator; `all` also permits eligible external PRs. Town-managed merges require current clean Town evidence, GitHub mergeability, required checks
378
+ leaves every merge to the operator; because the current Release Bot protocol cannot
379
+ limit its authority to publish while forbidding its release-preparation PR merges,
380
+ Town pauses Release Bot and rejects attempts to start or retry it under this policy.
381
+ `all` also permits eligible external PRs. Town-managed merges require current clean Town evidence, GitHub mergeability, required checks
375
382
  and approvals. Town uses an expected-head squash merge, without admin bypass.
376
383
  Change this at any time under **Town Settings → External contributions**.
377
384
  Repositories that require a merge queue or prohibit squash merging need manual
@@ -424,11 +431,22 @@ uncertain proposals before filing. Its verifier receives `FEATURE_COMMIT` and
424
431
  `FEATURE_FINDING`; shared verification commands must support the selected bot's
425
432
  environment. New and upgraded towns keep feature discovery paused until started.
426
433
 
434
+ Town Hall's **Automation outcomes** report separates worker attempts, filed
435
+ findings, submitted implementation PRs, repository-confirmed merges, repair
436
+ rounds, blocked or abandoned work, and verified releases for a selectable
437
+ period. A submitted PR is an artifact rather than an accepted fix. Operators
438
+ can mark each filed finding useful or a false positive only by adding an
439
+ explanation. Records retain task and revision provenance and show elapsed time,
440
+ token usage, and cost as unknown when the worker does not provide them. The CSV
441
+ export includes the repository on every row for comparisons across runs and
442
+ towns.
443
+
427
444
  Private state defaults to `$XDG_STATE_HOME/brokk-town` or
428
445
  `~/.local/state/brokk-town`. `--state-dir` selects another directory; `--demo`
429
446
  appends `demo`. A single writer lock, atomic snapshots, per-role bot state, and
430
- private worktrees keep towns separate. Events, logs, and reports have bounded
431
- recent histories; task/intent history persists. Browser access uses a per-service
447
+ private worktrees keep towns separate. Events, logs, and repo-bot reports have
448
+ bounded recent histories; task, intent, and automation outcome history persists.
449
+ Browser access uses a per-service
432
450
  local key in a URL fragment. `connection.json` and state snapshots are mode 0600.
433
451
  Private agent commands, environment, and authentication configuration are omitted
434
452
  from public configuration snapshots for both town defaults and bot profiles;
package/bin/bt CHANGED
Binary file
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.2.0",
2
+ "version": "0.3.1",
3
3
  "license": "Apache-2.0",
4
4
  "repository": {
5
5
  "type": "git",