Conversation
SawyerHood
force-pushed
the
upstream/project-show-more
branch
2 times, most recently
from
September 21, 2026 20:37
f3672a8 to
bec2898
Compare
SawyerHood
force-pushed
the
upstream/project-show-more
branch
from
September 21, 2026 20:55
bec2898 to
97caed2
Compare
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.
Human comments
What was wrong
The sidebar progressive-disclosure experiment also limited By machine lists, and its initial project selection followed the display sort instead of considering activity within each thread tree. Expanded project lists had no Show less control.
What changed
Restrict progressive disclosure to By project. Select five ordinary root trees using the latest attention timestamp among their idle or errored descendants, while keeping trees needing attention or containing the selected thread visible. Preserve the configured display order, reveal ten more trees per Show more click, and add Show less to reset the revealed set. By machine and Manually remain fully expanded.
Update the experiment label and configuration/CLI guidance. The experiment remains off by default; enable it in Settings → Experiments or with
bb settings experiment sidebarProgressiveDisclosure true. This change uses existing timestamps and adds no database migration or protocol changes. Successful child completion does not independently update the attention timestamp used for ranking.How you verified
pnpm exec turbo run test --filter=@bb/app -- --run src/components/sidebar/ProjectThreadTree.disclosure.test.tsx src/components/sidebar/ProjectList.modes.test.tsx— 21 tests passed, covering disclosure selection, expansion/collapse, and organization modes.pnpm exec turbo run typecheck lint --filter=@bb/app— passed; lint reported 198 warnings and no errors.