Conversation
Add ui.tab_bar_position, ui.show_clock, and ui.prefix_hint to the versioned config reference so it stays in sync with the config model.
…ts (tvaintrob#1) Adds a new configurable keybinding `next_blocked_agent` that focuses the next agent in blocked state, wrapping around when reaching the end. This allows quickly jumping to agents that need human input without cycling through idle/working agents. Configuration (in config.toml): [keys] next_blocked_agent = "prefix+shift+n" Co-authored-by: tamir altshuler <tamir@tamirs-MacBook-Pro.local> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
The test-only `execute_navigate_action_in_context` match was not updated when `NextBlockedAgent` was added, so the crate fails to compile under `cfg(test)` with E0004 and no tests can run. Add the missing arm. Focusing the next blocked agent needs agent panel entries that only the App-level dispatch can resolve, so this path just leaves navigate mode, mirroring how the other agent actions degrade here. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This was referenced Aug 10, 2026
`scripts/config_reference_check.py` fails on master because the binding exists in src/config but was never added to the reference data. Co-Authored-By: Claude Opus 5 (1M context) <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.
Two follow-ups to b79ccf5, both of which currently fail on
master.1. The test suite cannot compile
The test-only
execute_navigate_action_in_contextmatch insrc/app/input/navigate.rswas not updated whenNextBlockedAgentwas added:This blocks the entire suite — no tests can run at all, on any branch.
Adds the missing arm. Focusing the next blocked agent resolves agent panel entries that only the App-level dispatch can reach, so this test-only path simply leaves navigate mode, the same way the other agent actions degrade in this context.
2. The config reference is out of sync
scripts/config_reference_check.pyalso fails onmaster:Adds the missing
keys.next_blocked_agentrow.Verification
cargo build --release— cleancargo test --release --bin herdr -- --test-threads=1— 2638 passed, 0 failedpython3 scripts/config_reference_check.py— passesOne unrelated flake exists under parallel runs (
pane_graphics_stream::inactive_owner_cancels_idle_stream_and_dispatches_close, a timing/AddrInUseissue); it passes consistently in isolation and serially.🤖 Generated with Claude Code