Conversation
…8 follow-up) Salvaged from BOI worker SB33F (2026-05-12), which produced the implementation but failed task-verify due to cargo-test-on-host race condition (violates hex standing order: BOI cargo tests must run in Docker while daemon active). Adds: - src/cli/overrides_cmd.rs: new 'boi overrides' subcommand with list / clear <name> / clear --all actions targeting ~/.boi/phases/ - src/main.rs: wire Overrides variant + dispatch - tests/test_phase_override_startup_warning.rs: cargo test asserting worker.rs emits "[WARN] Phase overrides active:" when user phase files exist - worker.rs / cli/mod.rs / docs: supporting plumbing + doc note Verified manually: - `cargo build --release` clean - `cargo test test_phase_override_startup_warning` passes - `boi overrides list/clear` round-trip works Closes A-28 phase override reconciliation work originally tracked in S0047 / SB33F. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
boi overridessubcommand (list / clear / clear --all) for managing~/.boi/phases/override filestest_phase_override_startup_warningasserts worker emits[WARN] Phase overrides active:when user phase files existBackstory
Worker SB33F (autonomous BOI run, 2026-05-12) produced this implementation but
task-verifyfailed becausecargo testwas run on host while the daemon held the worktree (race condition; violates the hex standing order that BOI cargo tests must run in Docker).The artifact itself passes cleanly when run manually:
```
$ cargo test test_phase_override_startup_warning
test test_phase_override_startup_warning ... ok
```
Salvaged in a separate hex session; verified end-to-end before opening this PR.
Test plan
🤖 Generated with Claude Code