feat: Broad-Side zero-config slicing (#140) - #152
Merged
Conversation
The defect, conventions, and porting lenses now slice by 'auto' instead of always per-directory. A repo whose matching files fit within the lens's char cap collapses to a single whole-repo slice — one request instead of one per module — while a repo too large for one slice still splits by top-level directory. Small repos stop paying per-module request overhead; large repos keep full coverage. The decision is deterministic from file sizes (stat, not a full read) and recorded implicitly in the slice layout. 2 tests updated/added (small-repo collapse, large-repo directory split); 36 broadside tests, 396 total, all passing.
# Conflicts: # CHANGELOG.md
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.
The defect, conventions, and porting lenses now slice by
autoinstead of always per-directory:The decision is deterministic from file sizes (a
statpass, not a full read) and recorded implicitly in the slice layout. Small repos stop paying per-module request overhead; large repos keep full coverage.2 tests updated/added (small-repo collapse, large-repo directory split). 36 broadside tests, 396 total, all passing.
Closes #140. Note: this branch inserts a bullet at the top of the CHANGELOG 'Added' section, as do #149/#150/#151 — trivial list-merge conflicts expected on whichever merges later; keep all bullets.