@brokkai/issue-bot-darwin-x64 0.2.1 → 0.3.0
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 +20 -3
- package/bin/bib +0 -0
- package/package.json +1 -1
package/BUILD.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"commit": "
|
|
1
|
+
{"commit": "6179a134ef36597a101368c4b11b30960157eba3", "tag": "v0.3.0", "target": "darwin-amd64"}
|
package/README.md
CHANGED
|
@@ -38,8 +38,8 @@ and an authenticated ACP agent. The default is `codex-acp`; if it is missing,
|
|
|
38
38
|
download the adapter). Explicit agent commands are used exactly as supplied.
|
|
39
39
|
|
|
40
40
|
No configuration file is needed. The bot discovers `origin` (or the only remote)
|
|
41
|
-
and the repository's default branch.
|
|
42
|
-
|
|
41
|
+
and the repository's default branch. New workspaces use a private bare Git
|
|
42
|
+
repository and a separate persistent worktree for each issue. Your source checkout and uncommitted edits are left
|
|
43
43
|
alone. Starting it authorizes unattended edits, command execution, commits,
|
|
44
44
|
branch pushes, claim/status comments and PR creation for the configured repository.
|
|
45
45
|
|
|
@@ -177,7 +177,24 @@ Default state lives below `$XDG_STATE_HOME/issue-bot` or
|
|
|
177
177
|
`~/.local/state/issue-bot`, keyed by remote and base branch. Startup logs the paths.
|
|
178
178
|
State writes use atomic replacement and fsync. Private JSONL transcripts live in
|
|
179
179
|
`state/sessions`; readable live output goes to stderr. Use `--json` for structured
|
|
180
|
-
logs. Retain the managed
|
|
180
|
+
logs. Retain the managed workspace, issue worktrees and state together across restarts.
|
|
181
|
+
|
|
182
|
+
New workspaces keep Git storage in `state/repository.git`, a detached management
|
|
183
|
+
worktree in `checkout`, and each issue's worktree in `checkout-issues/<number>`.
|
|
184
|
+
The management and issue worktrees share only this bot's private repository;
|
|
185
|
+
your checkout, release-bot and other bots have independent Git metadata.
|
|
186
|
+
Existing managed clones and their unfinished issue worktrees continue in place.
|
|
187
|
+
A manually configured checkout must be a standalone clone or this bot's private
|
|
188
|
+
worktree; a linked worktree sharing another repository's Git metadata is rejected.
|
|
189
|
+
|
|
190
|
+
Each attempt fetches the watched branch. The agent merges current remote changes
|
|
191
|
+
into its assigned issue branch, resolves conflicts, and reruns affected checks
|
|
192
|
+
before returning a fix. Retries retain the same branch, staged/unstaged edits,
|
|
193
|
+
and unfinished merges. Other issue worktrees and the local `master`/`main` branch
|
|
194
|
+
are left alone. Overlapping code changes can still need conflict resolution or
|
|
195
|
+
review; worktree isolation prevents local interference. Existing claim comments
|
|
196
|
+
coordinate separate issue-bot instances, and local locks prevent duplicate daemons
|
|
197
|
+
from using the same workspace.
|
|
181
198
|
|
|
182
199
|
ACP permission requests are automatically approved. Client filesystem callbacks
|
|
183
200
|
are confined by `os.Root`; agents and terminal commands inherit the bot account's
|
package/bin/bib
CHANGED
|
Binary file
|
package/package.json
CHANGED